]> git.proxmox.com Git - pve-kernel.git/blame - debian/proxmox-kernel-meta.postinst.in
d/rules: perf: build without libtraceevent
[pve-kernel.git] / debian / proxmox-kernel-meta.postinst.in
CommitLineData
6e72c5b2
FG
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
10 ln -sf /boot/vmlinuz-@@KVNAME@@ /boot/pve/vmlinuz-@@KVMAJMIN@@
11 ln -sf /boot/initrd.img-@@KVNAME@@ /boot/pve/initrd.img-@@KVMAJMIN@@
12 ;;
13esac
14
15#DEBHELPER#
16
17exit 0