Don't use the python directly in devstack

Calling the python executable directly in the devstack plugin makes it
impossible to test with python3. The command script has the proper
shebang directive.

Change-Id: I96f5aaff1898961546866022facc4a5bc8a4b1d4
This commit is contained in:
Thomas Herve 2017-01-17 15:56:27 +01:00
parent a527cfe02d
commit 081982a54b
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ function neutron_lbaas_start {
fi
if [[ "$is_run_process" == "True" ]] ; then
run_process $LBAAS_VERSION "python $AGENT_LBAAS_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_LBAAS_CONF --config-file=$LBAAS_AGENT_CONF_FILENAME"
run_process $LBAAS_VERSION "$AGENT_LBAAS_BINARY --config-file $NEUTRON_CONF --config-file $NEUTRON_LBAAS_CONF --config-file=$LBAAS_AGENT_CONF_FILENAME"
fi
}