proxmox-ve/debian/postinst
Thomas Lamprecht 389cf5a138 depend on 5.13 based kernel as new default
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2021-11-11 21:45:52 +01:00

18 lines
341 B
Bash
Executable File

#! /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-5.13 /boot/pve/vmlinuz || true
ln -sf /boot/pve/initrd.img-5.13 /boot/pve/initrd.img || true
;;
esac
#DEBHELPER#
exit 0