]> git.proxmox.com Git - proxmox-mailgateway.git/blame - debian/postinst
d/control: depend on kernel 6.2 by default
[proxmox-mailgateway.git] / debian / postinst
CommitLineData
44653194
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
794a28d8
SI
10 ln -sf /boot/pve/vmlinuz-6.2 /boot/pve/vmlinuz
11 ln -sf /boot/pve/initrd.img-6.2 /boot/pve/initrd.img
44653194
DM
12 ;;
13esac
14
065de7d6
SI
15#DEBHELPER#
16
44653194 17exit 0