]> git.proxmox.com Git - proxmox-ve.git/blame - debian/postinst
d/copyright: update years
[proxmox-ve.git] / debian / postinst
CommitLineData
12e4776a
FG
1#! /bin/sh
2
3980e2e5 3# Abort if any command returns an error value
02046aab 4set -e
12e4776a 5
12e4776a
FG
6case "$1" in
7 configure)
12e4776a 8 # setup kernel links for installation CD (rescue boot)
02046aab 9 mkdir -p /boot/pve || true
a1fb08a7
TL
10 ln -sf /boot/pve/vmlinuz-5.15 /boot/pve/vmlinuz || true
11 ln -sf /boot/pve/initrd.img-5.15 /boot/pve/initrd.img || true
12e4776a 12 ;;
12e4776a
FG
13esac
14
cb0a97d1
FG
15#DEBHELPER#
16
12e4776a 17exit 0