From bbe06b9a5c02e347c745e1296db406789780ec17 Mon Sep 17 00:00:00 2001 From: Akihiro Motoki Date: Fri, 1 Sep 2017 07:49:49 +0000 Subject: [PATCH] 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 --- devstack/settings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/settings b/devstack/settings index 9a02db017..e4de409b1 100644 --- a/devstack/settings +++ b/devstack/settings @@ -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"}