]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fixes an issue using ml2 and openvswitch plugin
authorgustavo panizzo <gfa@zumbi.com.ar>
Wed, 2 Apr 2014 05:07:26 +0000 (02:07 -0300)
committergustavo panizzo <gfa@zumbi.com.ar>
Wed, 2 Apr 2014 05:07:26 +0000 (02:07 -0300)
Rewritten-From: b737899a2cdf29398861e16c1f78f4707d5388f2

trusty/debian/changelog
trusty/debian/neutron-plugin-openvswitch-agent.init

index f83f25a34e587ef84f7641ae6c3d23af876ccdfd..75a6670cd768141ed084e1f5a98007d5615f5db9 100644 (file)
@@ -1,3 +1,10 @@
+neutron (2014.1~rc1-3) UNRELEASED; urgency=medium
+
+  * Fixes an issue using ml2 and openvswitch plugin, openvswitch agent wasn't 
+  loading it's config file.
+
+ -- gustavo panizzo <gfa@zumbi.com.ar>  Wed, 02 Apr 2014 02:06:05 -0300
+
 neutron (2014.1~rc1-2) experimental; urgency=low
 
   * New upstream release.
index 96b2751d2b92bfd6af79179988f601b7d2ceee0c..a86f49889490f971bbca2aeec2f14bea4fb4c054 100644 (file)
@@ -47,6 +47,9 @@ if [ -z "${CURRENT_PLUGIN}" ] ; then
 fi
 neutron_core_plugin_to_plugin_name ${CURRENT_PLUGIN}
 neutron_plugin_ini_path ${NEUTRON_PLUGIN_NAME}
+if [ ${NEUTRON_PLUGIN_NAME} = ml2 ]; then
+            DAEMON_ARGS="${DAEMON_ARGS} --config-file=${CONF_FILE}"
+fi
 if [ -z "${NEUTRON_PLUGIN_CONFIG}" ] ; then
        echo "Plugin not recognized: please edit /etc/init.d/neutron-server to select the correct .ini file to load for your plugin"
 else