From fcefb0a910f78f36b329d8eb74d3849678a7a2b7 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Sun, 26 Apr 2015 08:50:49 -0700 Subject: [PATCH] VMware: add support for simple DVS Add the file vmware_dvs that will enable the external CI to be run. The patch in the VMware repo for the DVS support is: https://review.openstack.org/#/c/177597/ Change-Id: I6dee978fd2be3818c5ce57b1dcb2917234ab61e2 --- lib/neutron_plugins/vmware_dvs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/neutron_plugins/vmware_dvs diff --git a/lib/neutron_plugins/vmware_dvs b/lib/neutron_plugins/vmware_dvs new file mode 100644 index 0000000000..587d5a6b11 --- /dev/null +++ b/lib/neutron_plugins/vmware_dvs @@ -0,0 +1,10 @@ +#!/bin/bash + +# This file is needed so Q_PLUGIN=vmware_dvs will work. + +# FIXME(salv-orlando): This function should not be here, but unfortunately +# devstack calls it before the external plugins are fetched +function has_neutron_plugin_security_group { + # 0 means True here + return 0 +}