d/control: depend on 6.2 as default kernel

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-06-12 11:43:54 +02:00
parent 44fab4d67f
commit bb6af1d25b
2 changed files with 3 additions and 3 deletions

2
debian/control vendored
View File

@ -10,7 +10,7 @@ Depends: proxmox-archive-keyring,
proxmox-backup-client,
proxmox-backup-server,
proxmox-kernel-helper,
pve-kernel-5.15,
pve-kernel-6.2,
Description: Proxmox Backup Server meta package
This is a meta package which will install everything needed to run a
Proxmox Backup server. This package also depends on the latest

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.15 /boot/pve/vmlinuz
ln -sf /boot/pve/initrd.img-5.15 /boot/pve/initrd.img
ln -sf /boot/pve/vmlinuz-6.2 /boot/pve/vmlinuz
ln -sf /boot/pve/initrd.img-6.2 /boot/pve/initrd.img
;;
esac