Dean Troyer | 768295e | 2013-01-09 13:42:03 -0600 | [diff] [blame^] | 1 | # tempest.sh - DevStack extras script |
2 | |||||
3 | source $TOP_DIR/lib/tempest | ||||
4 | |||||
5 | if [[ "$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 | ||||
13 | fi | ||||
14 | |||||
15 | if [[ "$1" == "unstack" ]]; then | ||||
16 | # no-op | ||||
17 | : | ||||
18 | fi | ||||
19 | |||||
20 |