From d8ed29dcb3c73bd0eec61939164b90b914c6530c Mon Sep 17 00:00:00 2001 From: Aaron Rosen Date: Tue, 9 Jun 2015 13:15:24 -0700 Subject: [PATCH] Add vmware_nsx_v3 support Sadly this is needed. We should refactor this out from all of the plugins so we don't need to have all of these files. Adding this one for now though. Change-Id: Id382443fa7bef6b45237688c7e88d9e9a80a6ba1 --- lib/neutron_plugins/vmware_nsx_v3 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/neutron_plugins/vmware_nsx_v3 diff --git a/lib/neutron_plugins/vmware_nsx_v3 b/lib/neutron_plugins/vmware_nsx_v3 new file mode 100644 index 0000000000..6d8a6e6b70 --- /dev/null +++ b/lib/neutron_plugins/vmware_nsx_v3 @@ -0,0 +1,10 @@ +#!/bin/bash + +# This file is needed so Q_PLUGIN=vmware_nsx_v3 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 +}