From f34424ea7d6aafeed0f371ec2131924cf3c2ec06 Mon Sep 17 00:00:00 2001 From: Edgar Magana Date: Mon, 29 Jul 2013 16:47:13 -0700 Subject: [PATCH] Update to PLUMgrid plugin configuration Fix bug #1206308 Add function for security groups Add function for ovs check Update plugin class configuration Change-Id: I603e902f985277a61f162abdfffd6430cc00efaa --- lib/neutron_plugins/plumgrid | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/neutron_plugins/plumgrid b/lib/neutron_plugins/plumgrid index a4f0b0dd5d..9d3c92ff51 100644 --- a/lib/neutron_plugins/plumgrid +++ b/lib/neutron_plugins/plumgrid @@ -21,7 +21,7 @@ function neutron_plugin_configure_common() { Q_PLUGIN_CONF_PATH=etc/neutron/plugins/plumgrid Q_PLUGIN_CONF_FILENAME=plumgrid.ini Q_DB_NAME="plumgrid_neutron" - Q_PLUGIN_CLASS="neutron.plugins.plumgrid.plumgrid_nos_plugin.plumgrid_plugin.NeutronPluginPLUMgridV2" + Q_PLUGIN_CLASS="neutron.plugins.plumgrid.plumgrid_plugin.plumgrid_plugin.NeutronPluginPLUMgridV2" PLUMGRID_DIRECTOR_IP=${PLUMGRID_DIRECTOR_IP:-localhost} PLUMGRID_DIRECTOR_PORT=${PLUMGRID_DIRECTOR_PORT:-7766} } @@ -35,6 +35,16 @@ function neutron_plugin_configure_debug_command() { : } +function is_neutron_ovs_base_plugin() { + # False + return 1 +} + +function has_neutron_plugin_security_group() { + # False + return 1 +} + function neutron_plugin_check_adv_test_requirements() { is_service_enabled q-agt && is_service_enabled q-dhcp && return 0 }