linuxbridge: Fix name of securitygroup section

With an incorrectly named section, whatever's defined in here is
actually ignored which can result in unexpected behaviour.

Closes-Bug: 1889455

Change-Id: Ib2e2b53e9a3c0e62a2e997881c0cd1f92acfb39c
Signed-off-by: Nick Jones <nick@dischord.org>
This commit is contained in:
Nick Jones 2020-07-29 18:36:25 +01:00 committed by Radosław Piliszek
parent 1f50f1be79
commit 07f67f1b92
3 changed files with 8 additions and 2 deletions

View File

@ -6,7 +6,7 @@ extensions = {{ neutron_agent_extensions|map(attribute='name')|join(',') }}
[linux_bridge]
physical_interface_mappings = physnet1:{{ neutron_external_interface }}
[security_group]
[securitygroup]
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
[vxlan]

View File

@ -57,7 +57,7 @@ to using the native OVS firewall driver by employing a configuration override
.. code-block:: ini
[security_group]
[securitygroup]
firewall_driver = openvswitch
OVN (ml2/ovn)

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with the Neutron Linux bridge ML2 driver where the firewall
driver configuration was not applied. `LP#1889455
<https://launchpad.net/bugs/1889455>`__