proxmox-backup-meta/debian/postinst
Thomas Lamprecht 1424ee483f d/control: switch over to 5.15 kernel as new default
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2022-05-04 09:41:26 +02:00

18 lines
316 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
ln -sf /boot/pve/vmlinuz-5.15 /boot/pve/vmlinuz
ln -sf /boot/pve/initrd.img-5.15 /boot/pve/initrd.img
;;
esac
#DEBHELPER#
exit 0