]> git.proxmox.com Git - proxmox-ve.git/blob - debian/postinst
Update kernel links for install CD (rescue boot)
[proxmox-ve.git] / debian / postinst
1 #! /bin/sh
2
3 # Abort if any command returns an error value
4 set -e
5
6 case "$1" in
7 configure)
8 # setup kernel links for installation CD (rescue boot)
9 mkdir -p /boot/pve
10 ln -sf /boot/pve/vmlinuz-5.3 /boot/pve/vmlinuz
11 ln -sf /boot/pve/initrd.img-5.3 /boot/pve/initrd.img
12 ;;
13 esac
14
15 exit 0