All other security group configs in Neutron are lower-case
and it should be consistent.
Change-Id: I683333c1e186446a69172446cca6d9b952673ed4
Closes-Bug: #1279862
| ... | ... |
@@ -93,9 +93,9 @@ function neutron_plugin_configure_service() {
|
| 93 | 93 |
# instead use its own config variable to indicate whether security |
| 94 | 94 |
# groups is enabled, and that will need to be set here instead. |
| 95 | 95 |
if [[ "$Q_USE_SECGROUP" == "True" ]]; then |
| 96 |
- iniset /$Q_PLUGIN_CONF_FILE SECURITYGROUP firewall_driver neutron.agent.not.a.real.FirewallDriver |
|
| 96 |
+ iniset /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver neutron.agent.not.a.real.FirewallDriver |
|
| 97 | 97 |
else |
| 98 |
- iniset /$Q_PLUGIN_CONF_FILE SECURITYGROUP firewall_driver neutron.agent.firewall.NoopFirewallDriver |
|
| 98 |
+ iniset /$Q_PLUGIN_CONF_FILE securitygroup firewall_driver neutron.agent.firewall.NoopFirewallDriver |
|
| 99 | 99 |
fi |
| 100 | 100 |
|
| 101 | 101 |
# Since we enable the tunnel TypeDrivers, also enable a local_ip |