blob: f1599557261fc3e76ddcadeb6a26375417c46bd7 [file] [log] [blame]
Dean Troyer768295e2013-01-09 13:42:03 -06001# tempest.sh - DevStack extras script
2
3source $TOP_DIR/lib/tempest
4
5if [[ "$1" == "stack" ]]; then
6 # Configure Tempest last to ensure that the runtime configuration of
7 # the various OpenStack services can be queried.
8 if is_service_enabled tempest; then
9 echo_summary "Configuring Tempest"
10 install_tempest
11 configure_tempest
Attila Fazekas1d29d8b2013-01-07 15:51:32 +010012 init_tempest
Dean Troyer768295e2013-01-09 13:42:03 -060013 fi
14fi
15
16if [[ "$1" == "unstack" ]]; then
17 # no-op
18 :
19fi
20
21