From 9124a84a968d00582bd8bada154db22b9544bfd0 Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Mon, 1 Aug 2016 14:56:02 +0700 Subject: [PATCH] q-l3 failed to start in case q-fwaas enabled In case q-fwaas is enabled. It will causes the q-l3 failed to start because the DevStack gave a redundant --config-file option to start q-l3 This is a follow-up patch of 84409516d56417464dfe0c4e6904a1a76f9fa254 to remove fwaas from DevStack completely. Change-Id: I630969b3556bcffba506cab02a09cc83f4430c88 Closes-Bug: #1608401 --- lib/neutron-legacy | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/neutron-legacy b/lib/neutron-legacy index 5d91cdabca..44db16a435 100644 --- a/lib/neutron-legacy +++ b/lib/neutron-legacy @@ -292,9 +292,6 @@ function _determine_config_server { function _determine_config_l3 { local opts="--config-file $NEUTRON_CONF --config-file $Q_L3_CONF_FILE" - if is_service_enabled q-fwaas; then - opts+=" --config-file $Q_FWAAS_CONF_FILE" - fi echo "$opts" }