]> git.proxmox.com Git - pve-kernel-meta.git/blame - debian/postinst
d/postinst: create fallback symlinks for rescue-boot here
[pve-kernel-meta.git] / debian / postinst
CommitLineData
cb643ddf
TL
1#! /bin/sh
2
3# Abort if any command returns an error value
4set -e
5
6case "$1" in
7 configure)
8 # setup kernel links for installation CD (rescue boot)
9 mkdir -p /boot/pve || true
10 ln -sf /boot/pve/vmlinuz-6.5 /boot/pve/vmlinuz || true
11 ln -sf /boot/pve/initrd.img-6.5 /boot/pve/initrd.img || true
12 ;;
13esac
14
15#DEBHELPER#
16
17exit 0