blob: 506ccef75d2d89921ba7217c4eb7f13dd3f486fe [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
12 fi
13fi
14
15if [[ "$1" == "unstack" ]]; then
16 # no-op
17 :
18fi
19
20