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
This commit is contained in:
Pedro Magalhães 2016-04-20 11:23:32 +01:00
parent ea3dd6f393
commit e4ba2657c6

View File

@ -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 service_provider = LOADBALANCERV2:Haproxy:neutron_lbaas.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
{% endif %} {% endif %}
{% if neutron_vpnaas| bool %} {% 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 %}
{% endif %} {% endif %}