2013-01-09 13:42:03 -06:00
|
|
|
# tempest.sh - DevStack extras script
|
|
|
|
|
|
|
|
source $TOP_DIR/lib/tempest
|
|
|
|
|
|
|
|
if [[ "$1" == "stack" ]]; then
|
|
|
|
# Configure Tempest last to ensure that the runtime configuration of
|
|
|
|
# the various OpenStack services can be queried.
|
|
|
|
if is_service_enabled tempest; then
|
|
|
|
echo_summary "Configuring Tempest"
|
|
|
|
install_tempest
|
|
|
|
configure_tempest
|
2013-01-07 15:51:32 +01:00
|
|
|
init_tempest
|
2013-01-09 13:42:03 -06:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "$1" == "unstack" ]]; then
|
|
|
|
# no-op
|
|
|
|
:
|
|
|
|
fi
|
|
|
|
|
|
|
|
|