Browse code

Use neutron security groups in BigSwitch plugin

Configures the Big Switch third-party plugin to
use neutron security groups instead of nova
security groups.

Change-Id: I6bc3046ff0e70b8288a7c3f3d6f975376adc081a
Implements: blueprint bigswitch-neutron-security

Kevin Benton authored on 2014/02/14 10:17:30
Showing 1 changed files
... ...
@@ -38,7 +38,12 @@ function neutron_plugin_configure_l3_agent {
38 38
 }
39 39
 
40 40
 function neutron_plugin_configure_plugin_agent {
41
-    :
41
+    # Set up integration bridge
42
+    _neutron_ovs_base_setup_bridge $OVS_BRIDGE
43
+    iniset /$Q_PLUGIN_CONF_FILE restproxyagent integration_bridge $OVS_BRIDGE
44
+    AGENT_BINARY="$NEUTRON_DIR/neutron/plugins/bigswitch/agent/restproxy_agent.py"
45
+
46
+    _neutron_ovs_base_configure_firewall_driver
42 47
 }
43 48
 
44 49
 function neutron_plugin_configure_service {
... ...
@@ -61,7 +66,7 @@ function neutron_plugin_setup_interface_driver {
61 61
 
62 62
 function has_neutron_plugin_security_group {
63 63
     # 1 means False here
64
-    return 1
64
+    return 0
65 65
 }
66 66
 
67 67
 function neutron_plugin_check_adv_test_requirements {