2024-02-26 16:47:11 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# live-build configuration script
|
|
|
|
# see 'man lb config'
|
|
|
|
set -e
|
|
|
|
|
2025-01-22 20:40:08 +00:00
|
|
|
lb clean
|
2024-02-26 16:47:11 +00:00
|
|
|
lb config noauto \
|
|
|
|
--clean \
|
|
|
|
--ignore-system-defaults \
|
2025-01-22 20:40:08 +00:00
|
|
|
--distribution "bookworm" \
|
2024-02-26 16:47:11 +00:00
|
|
|
--debian-installer "none" \
|
2025-01-22 20:40:08 +00:00
|
|
|
--firmware-chroot "false" \
|
2024-02-26 16:47:11 +00:00
|
|
|
--linux-packages "linux-image" \
|
2025-01-22 20:40:08 +00:00
|
|
|
--bootappend-live "boot=live components quiet splash noeject" \
|
2024-02-26 16:47:11 +00:00
|
|
|
--archive-areas "main contrib non-free-firmware non-free" \
|
|
|
|
--mirror-bootstrap "http://cdn.debian.net/debian/" \
|
|
|
|
--mirror-chroot "http://cdn.debian.net/debian/" \
|
2025-01-22 20:40:08 +00:00
|
|
|
--backports "true" \
|
|
|
|
--updates "true" \
|
|
|
|
--iso-application "Proxmox Live" \
|
|
|
|
--iso-publisher "LE SRE" \
|
|
|
|
--iso-volume "${_BUILD_REV}:@ISOVOLUME_TS@" \
|
|
|
|
--image-name "live-proxmox-${_BUILD_REV}" \
|
2024-02-26 16:47:11 +00:00
|
|
|
"${@}"
|