devstack: Use entrypoint name for service_plugin

When specifying a service plugin, we can use entrypoint names
instead of full class paths.
It shorten the line length of service_plugins in neutron.conf
and improves the readability :)

Change-Id: I420a4c6fa39001600fa52e9443a3140162e9bb0a
This commit is contained in:
Akihiro Motoki 2017-08-31 23:14:29 +00:00
parent d387583720
commit 2c9f059c6e
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FWAAS_DRIVER_V1=${FWAAS_DRIVER_V1:-iptables}
FWAAS_DRIVER_V2=${FWAAS_DRIVER_V2:-iptables_v2}
FWAAS_PLUGIN_V1=${FWAAS_PLUGIN:-neutron_fwaas.services.firewall.fwaas_plugin.FirewallPlugin}
FWAAS_PLUGIN_V2=${FWAAS_PLUGIN:-neutron_fwaas.services.firewall.fwaas_plugin_v2.FirewallPluginV2}
FWAAS_PLUGIN_V1=${FWAAS_PLUGIN:-firewall}
FWAAS_PLUGIN_V2=${FWAAS_PLUGIN:-firewall_v2}
NEUTRON_FWAAS_DIR=$DEST/neutron-fwaas
NEUTRON_FWAAS_CONF_FILE=neutron_fwaas.conf