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: I51eb5960039683305feb7a8b8367b13b39ad4a1e
This commit is contained in:
Akihiro Motoki 2017-09-01 07:49:49 +00:00
parent 8278615c1f
commit bbe06b9a5c
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ enable_service neutron-vpnaas
AGENT_VPN_BINARY="$NEUTRON_BIN_DIR/neutron-vpn-agent"
# Plugin
VPN_PLUGIN=${VPN_PLUGIN:-"neutron_vpnaas.services.vpn.plugin.VPNDriverPlugin"}
VPN_PLUGIN=${VPN_PLUGIN:-"vpnaas"}
# Service Driver
NEUTRON_VPNAAS_SERVICE_PROVIDER=${NEUTRON_VPNAAS_SERVICE_PROVIDER:-"VPN:strongswan:neutron_vpnaas.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default"}