]> git.proxmox.com Git - proxmox-ve.git/blobdiff - debian/postinst
drop postinst/rm, moved to meta package for default-kernel
[proxmox-ve.git] / debian / postinst
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100755 (executable)
index c7d1270..0000000
+++ /dev/null
@@ -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