pve-kernel-meta/debian/proxmox-default-kernel.postinst
Thomas Lamprecht 12714e2c7c default to 6.8 kernel
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2024-04-17 07:28:40 +02:00

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