Allow setting services up under apache mod_wsgi

Setting the ENV variable DEVSTACK_GATE_USE_APACHE to
"1" will configure Keystone to run under
mod_wsgi and HTTPD.

Change-Id: I76ca01fbb305e7201fa2477f903b36bd6bc6a4a9
This commit is contained in:
Morgan Fainberg
2014-04-28 13:16:47 -07:00
parent 765099831e
commit 533bf50432

View File

@@ -219,6 +219,13 @@ EOF
# For now this is only injected in tempest configuration
echo "TEMPEST_AUTH_VERSION=v3" >>localrc
fi
if [ "$DEVSTACK_GATE_USE_APACHE" -eq "1" ]; then
# Configure services running under HTTPD (mod_wsgi) this list should
# include all services that should be run under mod_wsgi for a gate
# check.
echo "APACHE_ENABLED_SERVICES+=key" >> localrc
fi
}
if [ "$DEVSTACK_GATE_GRENADE" -eq "1" ]; then