mirror of
https://git.proxmox.com/git/proxmox-backup-meta
synced 2025-10-04 05:06:49 +00:00

and depend on proxmox-archive-keyring instead, which ships them for all Proxmox products. Else we got conflicts if one wanted to install PBS and PVE alongside. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
18 lines
314 B
Bash
Executable File
18 lines
314 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
|
|
ln -sf /boot/pve/vmlinuz-5.4 /boot/pve/vmlinuz
|
|
ln -sf /boot/pve/initrd.img-5.4 /boot/pve/initrd.img
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|