Browse code

Add script to delete templates

This is a common operation on XenServer, which seems to be a three
step process.

Change-Id: I125b9c11ace0b3454b7c974f9209aca01cdd7ed2

Renuka Apte authored on 2012/05/11 07:36:03
Showing 1 changed files
1 1
new file mode 100755
... ...
@@ -0,0 +1,9 @@
0
+#!/bin/bash
1
+
2
+#Usage: ./templatedelete.sh <template-uuid>
3
+
4
+templateuuid="$1"
5
+
6
+xe template-param-set other-config:default_template=false uuid="$templateuuid"
7
+xe template-param-set is-a-template=false uuid="$templateuuid"
8
+xe vm-destroy uuid="$templateuuid"