Renuka Apte | d7ed417 | 2012-05-10 15:36:03 -0700 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | #Usage: ./templatedelete.sh <template-uuid> | ||||
4 | |||||
5 | templateuuid="$1" | ||||
6 | |||||
7 | xe template-param-set other-config:default_template=false uuid="$templateuuid" | ||||
8 | xe template-param-set is-a-template=false uuid="$templateuuid" | ||||
9 | xe vm-destroy uuid="$templateuuid" |