diff --git a/lib/neutron b/lib/neutron index 19568eaf25..7d427555a4 100644 --- a/lib/neutron +++ b/lib/neutron @@ -395,9 +395,9 @@ function start_neutron_api { service_protocol="http" fi - local opts = "" - opts+="--config-file $NEUTRON_CONF" - opts+="--config-file $NEUTRON_CORE_PLUGIN_CONF" + local opts="" + opts+=" --config-file $NEUTRON_CONF" + opts+=" --config-file $NEUTRON_CORE_PLUGIN_CONF" local cfg_file for cfg_file in ${_NEUTRON_SERVER_EXTRA_CONF_FILES_ABS[@]}; do opts+=" --config-file $cfg_file" @@ -405,7 +405,7 @@ function start_neutron_api { # Start the Neutron service # TODO(sc68cal) Stop hard coding this - run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $ops" + run_process neutron-api "$NEUTRON_BIN_DIR/neutron-server $opts" if is_ssl_enabled_service "neutron"; then ssl_ca="--ca-certificate=${SSL_BUNDLE_FILE}"