From 9b38eb239294b91d3f8d6cc1471d12e8e15e7cb7 Mon Sep 17 00:00:00 2001 From: Stephen Ma Date: Wed, 2 Apr 2014 02:13:09 +0000 Subject: [PATCH] Neutron.conf is not setup unless q-svc is enabled In a multi-node environment, a node may have the neutron- openvswitch-agent running but not the neutron API server. The agent uses neutron.conf as one of the configuration files. Devstack sets up neutron.conf only when q-svc is enabled. Neutron.conf also needs to be configured when q-agt is enabled. Change-Id: I3d454caff0b49a61ee1a78f68b1bca98e29f21de Closes-Bug: 1184064 --- lib/neutron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/neutron b/lib/neutron index 294fface3d..546b17a3e2 100644 --- a/lib/neutron +++ b/lib/neutron @@ -274,7 +274,7 @@ function configure_neutron { if is_service_enabled q-fwaas; then _configure_neutron_fwaas fi - if is_service_enabled q-svc; then + if is_service_enabled q-agt q-svc; then _configure_neutron_service fi if is_service_enabled q-agt; then