aboutsummaryrefslogtreecommitdiffstats
path: root/community/secureboot-hook/secureboot-hook.pre-deinstall
diff options
context:
space:
mode:
Diffstat (limited to 'community/secureboot-hook/secureboot-hook.pre-deinstall')
-rw-r--r--community/secureboot-hook/secureboot-hook.pre-deinstall11
1 files changed, 0 insertions, 11 deletions
diff --git a/community/secureboot-hook/secureboot-hook.pre-deinstall b/community/secureboot-hook/secureboot-hook.pre-deinstall
deleted file mode 100644
index 1638e3badf8..00000000000
--- a/community/secureboot-hook/secureboot-hook.pre-deinstall
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-HOOK_FILE='/usr/share/kernel-hooks.d/secureboot.hook'
-
-for link in /etc/kernel-hooks.d/*; do
- if [ "$(readlink -f "$link")" = "$HOOK_FILE" ]; then
- rm "$link"
- fi
-done
-
-exit 0