]> git.proxmox.com Git - proxmox-ve.git/blobdiff - debian/postinst
bump version to 8.1.0
[proxmox-ve.git] / debian / postinst
index 2a22606c539f2fcff237c3f38f2f47aa200cc331..c7d127097d342dda12d2a02147382195b9cccd53 100755 (executable)
@@ -1,21 +1,17 @@
 #! /bin/sh
 
 # Abort if any command returns an error value
-set -e 
+set -e
 
 case "$1" in
   configure)
-    # cleanup - remove Proxmox Release Key key from /etc/apt/trusted.gpg
-    /usr/bin/apt-key --keyring /etc/apt/trusted.gpg del 9887F95A >/dev/null 2>&1 || /bin/true
-
-    # cleanup - remove old stretch-incompatible variant of installing release key
-    rm -f /etc/apt/trusted.gpg.d/proxmox-ve.gpg /etc/apt/trusted.gpg.d/proxmox-ve.gpg~
-
     # setup kernel links for installation CD (rescue boot)
-    mkdir -p /boot/pve
-    ln -sf /boot/pve/vmlinuz-4.13 /boot/pve/vmlinuz
-    ln -sf /boot/pve/initrd.img-4.13 /boot/pve/initrd.img
+    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