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 |
Attila Fazekas | 1d29d8b | 2013-01-07 15:51:32 +0100 | [diff] [blame] | 12 | init_tempest |
Dean Troyer | 768295e | 2013-01-09 13:42:03 -0600 | [diff] [blame] | 13 | fi |
| 14 | fi |
| 15 | |
| 16 | if [[ "$1" == "unstack" ]]; then |
| 17 | # no-op |
| 18 | : |
| 19 | fi |
| 20 | |
| 21 | |