Merge "Add script to delete templates"

This commit is contained in:
Jenkins
2012-05-16 20:06:04 +00:00
committed by Gerrit Code Review

View File

@@ -0,0 +1,9 @@
#!/bin/bash
#Usage: ./templatedelete.sh <template-uuid>
templateuuid="$1"
xe template-param-set other-config:default_template=false uuid="$templateuuid"
xe template-param-set is-a-template=false uuid="$templateuuid"
xe vm-destroy uuid="$templateuuid"