File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -975,14 +975,16 @@ action_run() {
975
975
976
976
usage () {
977
977
cat - << EOF
978
- scenario.sh (create|boot|run|cleanup|rerun|login) scenario-script [args]
978
+ scenario.sh (create|boot|run|cleanup|rerun|recreate| login) scenario-script [args]
979
979
980
980
create|boot -- Set up the infrastructure for the test, such as VMs.
981
981
982
982
run -- Run the scenario.
983
983
984
984
rerun -- cleanup, create, run for the same scenario.
985
985
986
+ recreate -- cleanup and create for the same scenario.
987
+
986
988
cleanup -- Remove the VMs created for the scenario.
987
989
988
990
login -- Login to a host for a scenario.
@@ -1019,6 +1021,10 @@ case "${action}" in
1019
1021
boot)
1020
1022
action_create " $@ "
1021
1023
;;
1024
+ recreate)
1025
+ action_cleanup " $@ "
1026
+ action_create " $@ "
1027
+ ;;
1022
1028
rerun)
1023
1029
action_cleanup " $@ "
1024
1030
action_create " $@ "
You can’t perform that action at this time.
0 commit comments