d/control: switch over to 5.11 kernel as new default

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-11-22 14:06:06 +01:00
parent 3b3bb4f2c9
commit f996d467c8
2 changed files with 3 additions and 3 deletions

2
debian/control vendored
View File

@ -10,7 +10,7 @@ Depends: libc6,
proxmox-archive-keyring,
proxmox-backup-client,
proxmox-backup-server,
pve-kernel-5.11,
pve-kernel-5.13,
pve-kernel-helper,
Description: Proxmox Backup Server metapackage
This is a meta package which will install everything needed to run a

4
debian/postinst vendored
View File

@ -7,8 +7,8 @@ case "$1" in
configure)
# setup kernel links for installation CD (rescue boot)
mkdir -p /boot/pve
ln -sf /boot/pve/vmlinuz-5.11 /boot/pve/vmlinuz
ln -sf /boot/pve/initrd.img-5.11 /boot/pve/initrd.img
ln -sf /boot/pve/vmlinuz-5.13 /boot/pve/vmlinuz
ln -sf /boot/pve/initrd.img-5.13 /boot/pve/initrd.img
;;
esac