From e4ba2657c6a1ecd99954d03d670aa7af18c0a144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Magalh=C3=A3es?= Date: Wed, 20 Apr 2016 11:23:32 +0100 Subject: [PATCH] Correct Neutron VPNaaS service_provider config entry When we run os-neutron.yml the playbook runs without a problem but neutron stops working because the service provider are using the wrong python module (neutron) instead of the the (neutron_vpnaas) which has the vpn module Change-Id: I749914ba76b6e6118819abd5c87a770796c3baa4 --- templates/neutron.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/neutron.conf.j2 b/templates/neutron.conf.j2 index 303b3c3e..78d69c0b 100644 --- a/templates/neutron.conf.j2 +++ b/templates/neutron.conf.j2 @@ -164,7 +164,7 @@ service_provider = LOADBALANCER:Haproxy:neutron_lbaas.services.loadbalancer.driv service_provider = LOADBALANCERV2:Haproxy:neutron_lbaas.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default {% endif %} {% if neutron_vpnaas| bool %} -service_provider = VPN:openswan:neutron.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default +service_provider = VPN:openswan:neutron_vpnaas.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default {% endif %} {% endif %}