5cdee8dd33
Bashate 0.3.2 has a few new checks -- firstly make sure some of the plugins have #!/bin/bash, and fix up a couple of "local" changes that were missed by I9c8912a8fd596535589b207d7fc553b9d951d3fe Change-Id: I9e4b1c0dc9e0f709d8e76f9c9bf1c9478b2605ed
30 lines
773 B
Bash
30 lines
773 B
Bash
#!/bin/bash
|
|
|
|
# Neutron firewall plugin
|
|
# ---------------------------
|
|
|
|
# Save trace setting
|
|
FW_XTRACE=$(set +o | grep xtrace)
|
|
set +o xtrace
|
|
|
|
FWAAS_PLUGIN=neutron_fwaas.services.firewall.fwaas_plugin.FirewallPlugin
|
|
|
|
function neutron_fwaas_configure_common {
|
|
_neutron_service_plugin_class_add $FWAAS_PLUGIN
|
|
}
|
|
|
|
function neutron_fwaas_configure_driver {
|
|
FWAAS_DRIVER_CONF_FILENAME=/etc/neutron/fwaas_driver.ini
|
|
cp $NEUTRON_FWAAS_DIR/etc/fwaas_driver.ini $FWAAS_DRIVER_CONF_FILENAME
|
|
|
|
iniset_multiline $FWAAS_DRIVER_CONF_FILENAME fwaas enabled True
|
|
iniset_multiline $FWAAS_DRIVER_CONF_FILENAME fwaas driver "neutron_fwaas.services.firewall.drivers.linux.iptables_fwaas.IptablesFwaasDriver"
|
|
}
|
|
|
|
function neutron_fwaas_stop {
|
|
:
|
|
}
|
|
|
|
# Restore xtrace
|
|
$FW_XTRACE
|