mirror of
https://git.proxmox.com/git/pve-kernel-meta
synced 2025-04-28 17:01:17 +00:00
18 lines
339 B
Bash
Executable File
18 lines
339 B
Bash
Executable File
#! /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 || true
|
|
ln -sf /boot/pve/vmlinuz-6.5 /boot/pve/vmlinuz || true
|
|
ln -sf /boot/pve/initrd.img-6.5 /boot/pve/initrd.img || true
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|