aboutsummaryrefslogtreecommitdiffstats
path: root/tools/hotplug/Linux/vtpm
diff options
context:
space:
mode:
Diffstat (limited to 'tools/hotplug/Linux/vtpm')
-rw-r--r--tools/hotplug/Linux/vtpm22
1 files changed, 0 insertions, 22 deletions
diff --git a/tools/hotplug/Linux/vtpm b/tools/hotplug/Linux/vtpm
deleted file mode 100644
index 38a4532fc2..0000000000
--- a/tools/hotplug/Linux/vtpm
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-dir=$(dirname "$0")
-. "$dir/vtpm-hotplug-common.sh"
-
-vtpm_fatal_error=0
-
-case "$command" in
- add)
- vtpm_create_instance
- ;;
- remove)
- vtpm_remove_instance
- ;;
-esac
-
-if [ $vtpm_fatal_error -eq 0 ]; then
- log debug "Successful vTPM operation '$command'."
- success
-else
- fatal "Error while executing vTPM operation '$command'."
-fi