Use trueorfalse for NEUTRON_DEPLOY_MOD_WSGI
Current code assumes the variable is being set to either "True" or "False", which will lead to weird errors if it is being set to something like "true" instead. Change-Id: I88983c9150efad882cd867c2d14d86ba6b2522c9
This commit is contained in:
parent
0c6208c6a0
commit
3492feeedd
@ -33,7 +33,7 @@ GITDIR["python-neutronclient"]=$DEST/python-neutronclient
|
||||
# - True : Run neutron under uwsgi
|
||||
# TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable
|
||||
# enough
|
||||
NEUTRON_DEPLOY_MOD_WSGI=${NEUTRON_DEPLOY_MOD_WSGI:-False}
|
||||
NEUTRON_DEPLOY_MOD_WSGI=$(trueorfalse False NEUTRON_DEPLOY_MOD_WSGI)
|
||||
NEUTRON_AGENT=${NEUTRON_AGENT:-openvswitch}
|
||||
NEUTRON_DIR=$DEST/neutron
|
||||
NEUTRON_AUTH_CACHE_DIR=${NEUTRON_AUTH_CACHE_DIR:-/var/cache/neutron}
|
||||
|
@ -91,7 +91,7 @@ export NEUTRON_TEST_CONFIG_FILE=${NEUTRON_TEST_CONFIG_FILE:-"$NEUTRON_CONF_DIR/d
|
||||
# - True : Run neutron under uwsgi
|
||||
# TODO(annp): Switching to uwsgi in next cycle if things turn out to be stable
|
||||
# enough
|
||||
NEUTRON_DEPLOY_MOD_WSGI=${NEUTRON_DEPLOY_MOD_WSGI:-False}
|
||||
NEUTRON_DEPLOY_MOD_WSGI=$(trueorfalse False NEUTRON_DEPLOY_MOD_WSGI)
|
||||
|
||||
NEUTRON_UWSGI_CONF=$NEUTRON_CONF_DIR/neutron-api-uwsgi.ini
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user