]> git.proxmox.com Git - pve-kernel-meta.git/blobdiff - debian/postrm.in
build transitional packages
[pve-kernel-meta.git] / debian / postrm.in
diff --git a/debian/postrm.in b/debian/postrm.in
deleted file mode 100755 (executable)
index 3b3adac..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#! /bin/sh
-
-# Abort if any command returns an error value
-set -e
-
-case "$1" in
-    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-        # remove kernel symlinks
-        rm -f /boot/pve/vmlinuz-@KERNEL_ABI@
-        rm -f /boot/pve/initrd.img-@KERNEL_ABI@
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-#DEBHELPER#