18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
|
#! /bin/sh
|
||
|
|
||
|
# Abort if any command returns an error value
|
||
|
set -e
|
||
|
|
||
|
case "$1" in
|
||
|
configure)
|
||
|
# setup kernel links for installation CD (rescue boot)
|
||
|
mkdir -p /boot/pve
|
||
|
ln -sf /boot/vmlinuz-@@KVNAME@@ /boot/pve/vmlinuz-@@KVMAJMIN@@
|
||
|
ln -sf /boot/initrd.img-@@KVNAME@@ /boot/pve/initrd.img-@@KVMAJMIN@@
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
#DEBHELPER#
|
||
|
|
||
|
exit 0
|