]> git.proxmox.com Git - proxmox-backup-meta.git/blame - debian/postinst
switch over to 5.11 kernel as new default
[proxmox-backup-meta.git] / debian / postinst
CommitLineData
50b1017c
DM
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
e3a8c965
TL
10 ln -sf /boot/pve/vmlinuz-5.11 /boot/pve/vmlinuz
11 ln -sf /boot/pve/initrd.img-5.11 /boot/pve/initrd.img
50b1017c
DM
12 ;;
13esac
14
bee3e324
TL
15#DEBHELPER#
16
50b1017c 17exit 0