proxmox-backup-meta/debian/postinst
Thomas Lamprecht bb6af1d25b d/control: depend on 6.2 as default kernel
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2023-06-12 12:53:29 +02:00

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