aboutsummaryrefslogtreecommitdiffstats
path: root/tools/hotplug/Linux/vtpm-delete
diff options
context:
space:
mode:
Diffstat (limited to 'tools/hotplug/Linux/vtpm-delete')
-rw-r--r--tools/hotplug/Linux/vtpm-delete18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/hotplug/Linux/vtpm-delete b/tools/hotplug/Linux/vtpm-delete
deleted file mode 100644
index b75b95bf0a..0000000000
--- a/tools/hotplug/Linux/vtpm-delete
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-# This scripts must be called the following way:
-# vtpm-delete <vtpm uuid>
-# or
-# vtpm-delete --vmname <vm name>
-
-dir=$(dirname "$0")
-. "$dir/vtpm-common.sh"
-
-if [ "$1" == "--vmname" ]; then
- vtpm_uuid=$(vtpm_uuid_from_vmname $2)
- if [ "$vtpm_uuid" != "" ];then
- vtpm_delete_instance $vtpm_uuid
- fi
-else
- vtpm_delete_instance $1
-fi