]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Added missing handling of ml2 plugin in neutron-common.postinst.
authorThomas Goirand <thomas@goirand.fr>
Thu, 5 Dec 2013 12:30:38 +0000 (20:30 +0800)
committerThomas Goirand <thomas@goirand.fr>
Thu, 5 Dec 2013 12:30:38 +0000 (20:30 +0800)
Change-Id: I3fce2638416e7d0775476a1b90f7818cd972b0bc

Rewritten-From: 6b23a3c64d5babd9be7e12cd5eafd1862f9a0b1e

trusty/debian/changelog
trusty/debian/neutron-common.postinst.in

index 547c08b6da7f262248bd0096f95f3b6655f0ea6b..695f528507378f52cf172cbb634ac4cb0296da32 100644 (file)
@@ -1,3 +1,9 @@
+neutron (2013.2-9) unstable; urgency=medium
+
+  * Added missing handling of ml2 plugin in neutron-common.postinst.
+
+ -- Thomas Goirand <zigo@debian.org>  Thu, 05 Dec 2013 20:30:09 +0800
+
 neutron (2013.2-8) unstable; urgency=medium
 
   * Fixes the core_plugin setup in neutron-common postinst.
index a1cb5fb03d6995b10ce722c738791aa8412b968f..ed7edfc214acf5cffb820b4b12ec49b3cb141a25 100644 (file)
@@ -12,6 +12,9 @@ neutron_core_plugin_class () {
        "OpenVSwitch")
                NEUTRON_PLUGIN_CLASS=neutron.plugins.openvswitch.ovs_neutron_plugin.OVSNeutronPluginV2
        ;;
+       "ml2")
+               NEUTRON_PLUGIN_CLASS=neutron.plugins.ml2.plugin.Ml2Plugin
+       ;;
        "LinuxBridge")
                NEUTRON_PLUGIN_CLASS=neutron.plugins.linuxbridge.lb_neutron_plugin.LinuxBridgePluginV2
        ;;