Remove the debian/ dir from the master branch
[kboot-utils.git] / debian / kernel / zz-update-kboot
diff --git a/debian/kernel/zz-update-kboot b/debian/kernel/zz-update-kboot
deleted file mode 100755 (executable)
index 3247acf..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/sh
-set -e
-
-which update-kboot >/dev/null 2>&1 || exit 0
-
-set -- $DEB_MAINT_PARAMS
-mode="${1#\'}"
-mode="${mode%\'}"
-case $0:$mode in
-    # Only run on postinst configure and postrm remove, to avoid wasting
-    # time by calling update-grub multiple times on upgrade and removal.
-    # Also run if we have no DEB_MAINT_PARAMS, in order to work with old
-    # kernel packages.
-    */postinst.d/*:|*/postinst.d/*:configure|*/postrm.d/*:|*/postrm.d/*:remove)
-       exec update-kboot
-       ;;
-esac
-
-exit 0