]> git.proxmox.com Git - proxmox-ve.git/blame - debian/postinst
d/postinst: drop old release key fixups
[proxmox-ve.git] / debian / postinst
CommitLineData
12e4776a
FG
1#! /bin/sh
2
3980e2e5 3# Abort if any command returns an error value
12e4776a
FG
4set -e
5
12e4776a
FG
6case "$1" in
7 configure)
12e4776a
FG
8 # setup kernel links for installation CD (rescue boot)
9 mkdir -p /boot/pve
8e09c00a
TL
10 ln -sf /boot/pve/vmlinuz-5.0 /boot/pve/vmlinuz
11 ln -sf /boot/pve/initrd.img-5.0 /boot/pve/initrd.img
12e4776a 12 ;;
12e4776a
FG
13esac
14
15exit 0