You've already forked Raspberry-Pi-Proxmox-Image
Initialize Git Repository: 'Raspberry-Pi-Proxmox-Image'
All checks were successful
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Linux Sources (push) Successful in 1h32m8s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 40s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 13s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Image (push) Successful in 42s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Headers (push) Successful in 22s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Linux Sources (push) Successful in 1h31m15s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 14s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 14s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Image (push) Successful in 47s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Headers (push) Successful in 33s
All checks were successful
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Linux Sources (push) Successful in 1h32m8s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 40s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 13s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Image (push) Successful in 42s
Raspberry Pi Proxmox Image (Bookworm) / Raspberry Pi Proxmox Headers (push) Successful in 22s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Linux Sources (push) Successful in 1h31m15s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Image (Meta Package) (push) Successful in 14s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Headers (Meta Package) (push) Successful in 14s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Image (push) Successful in 47s
Raspberry Pi Proxmox Image (Trixie) / Raspberry Pi Proxmox Headers (push) Successful in 33s
This commit is contained in:
21
proxmox-image-rpt-rpi-v8/DEBIAN/preinst
Normal file
21
proxmox-image-rpt-rpi-v8/DEBIAN/preinst
Normal file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/sh
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
VERSION='x.x.x+rpt-rpi-v8'
|
||||
IMAGE_PATH="/boot/vmlinuz-${VERSION}"
|
||||
|
||||
case "${1}" in
|
||||
abort-upgrade)
|
||||
exit 0
|
||||
;;
|
||||
install)
|
||||
/usr/bin/touch "/lib/modules/${VERSION}/.fresh-install"
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -d '/etc/kernel/preinst.d' ]; then
|
||||
DEB_MAINT_PARAMS="${*}" run-parts --report --exit-on-error --arg="${VERSION}" \
|
||||
--arg="${IMAGE_PATH}" '/etc/kernel/preinst.d'
|
||||
fi
|
||||
Reference in New Issue
Block a user