Alex | e286dbd | 2020-10-16 12:47:54 -0500 | [diff] [blame] | 1 | #!/bin/bash |
2 | function print_help { | ||||
3 | echo "Missing parameters: del_vm.sh <cmp_node> <instance-XXXXXX>" | ||||
4 | exit 1 | ||||
5 | } | ||||
6 | if [[ -z ${1+x} ]]; then | ||||
7 | print_help | ||||
8 | fi | ||||
9 | if [[ -z ${2+x} ]]; then | ||||
10 | print_help | ||||
11 | fi | ||||
12 | |||||
13 | echo "Destroy-n-undefine a VM..." | ||||
14 | salt ${1}\* cmd.run "virsh destroy ${2}; virsh undefine ${2}" |