Browse code

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

Edgar Magana authored on 2013/07/30 08:47:13
Showing 1 changed files
... ...
@@ -21,7 +21,7 @@ function neutron_plugin_configure_common() {
21 21
     Q_PLUGIN_CONF_PATH=etc/neutron/plugins/plumgrid
22 22
     Q_PLUGIN_CONF_FILENAME=plumgrid.ini
23 23
     Q_DB_NAME="plumgrid_neutron"
24
-    Q_PLUGIN_CLASS="neutron.plugins.plumgrid.plumgrid_nos_plugin.plumgrid_plugin.NeutronPluginPLUMgridV2"
24
+    Q_PLUGIN_CLASS="neutron.plugins.plumgrid.plumgrid_plugin.plumgrid_plugin.NeutronPluginPLUMgridV2"
25 25
     PLUMGRID_DIRECTOR_IP=${PLUMGRID_DIRECTOR_IP:-localhost}
26 26
     PLUMGRID_DIRECTOR_PORT=${PLUMGRID_DIRECTOR_PORT:-7766}
27 27
 }
... ...
@@ -35,6 +35,16 @@ function neutron_plugin_configure_debug_command() {
35 35
     :
36 36
 }
37 37
 
38
+function is_neutron_ovs_base_plugin() {
39
+    # False
40
+    return 1
41
+}
42
+
43
+function has_neutron_plugin_security_group() {
44
+    # False
45
+    return 1
46
+}
47
+
38 48
 function neutron_plugin_check_adv_test_requirements() {
39 49
     is_service_enabled q-agt && is_service_enabled q-dhcp && return 0
40 50
 }