From: Paul Michali Date: Wed, 5 Aug 2015 20:51:46 +0000 (-0400) Subject: Enable VPN plugin for API test X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=ae9be0b999e9ee8d2f5ab472d9dbb89a4db11487;p=openstack-build%2Fneutron-build.git Enable VPN plugin for API test Since API tests still contain VPN test cases, enable the VPN devstack plugin, so that the service is enabled. Change-Id: Icc3c4038a0772a85a2377bc10d50ab84927c4bad --- diff --git a/neutron/tests/contrib/gate_hook.sh b/neutron/tests/contrib/gate_hook.sh index c5399e82b..3da5775c0 100644 --- a/neutron/tests/contrib/gate_hook.sh +++ b/neutron/tests/contrib/gate_hook.sh @@ -26,5 +26,10 @@ then configure_host_for_func_testing elif [ "$VENV" == "api" ] then + if [[ -z "$DEVSTACK_LOCAL_CONFIG" ]]; then + export DEVSTACK_LOCAL_CONFIG="enable_plugin neutron-vpnaas git://git.openstack.org/openstack/neutron-vpnaas" + else + export DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin neutron-vpnaas git://git.openstack.org/openstack/neutron-vpnaas" + fi $BASE/new/devstack-gate/devstack-vm-gate.sh fi