drop postinst/rm, moved to meta package for default-kernel

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-11-23 10:51:37 +01:00
parent 334c1dc288
commit 493beb5f94
2 changed files with 0 additions and 37 deletions

17
debian/postinst vendored
View File

@ -1,17 +0,0 @@
#! /bin/sh
# Abort if any command returns an error value
set -e
case "$1" in
configure)
# setup kernel links for installation CD (rescue boot)
mkdir -p /boot/pve || true
ln -sf /boot/pve/vmlinuz-6.5 /boot/pve/vmlinuz || true
ln -sf /boot/pve/initrd.img-6.5 /boot/pve/initrd.img || true
;;
esac
#DEBHELPER#
exit 0

20
debian/postrm vendored
View File

@ -1,20 +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 || true
rm -f /boot/pve/initrd.img || true
rmdir --ignore-fail-on-non-empty /boot/pve/ || true
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#