Browse code

lib/neutron-plugins: Pass conf file parameter

The 'neutron_plugin_configure_l3_agent' function expects a path to a
configuration file as a parameter. This was not done for one call,
resulting in the generation of a 'DEFAULT' file in the DevStack
directory along with an invalid L3 configuration file. Resolve this.

Change-Id: I5781cb1ec4cfc1699e61dbc324d0bdb824b56be1

Stephen Finucane authored on 2016/06/15 22:31:51
Showing 1 changed files
... ...
@@ -99,7 +99,7 @@ function _configure_neutron_l3_agent {
99 99
 
100 100
     _neutron_setup_interface_driver $Q_L3_CONF_FILE
101 101
 
102
-    neutron_plugin_configure_l3_agent
102
+    neutron_plugin_configure_l3_agent $Q_L3_CONF_FILE
103 103
 
104 104
     _move_neutron_addresses_route "$PUBLIC_INTERFACE" "$OVS_PHYSICAL_BRIDGE" True False "inet"
105 105