2020-07-07 17:23:30 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
lb config noauto \
|
|
|
|
--bootloaders "syslinux,grub-efi" \
|
2023-11-06 21:49:18 +01:00
|
|
|
--distribution "bookworm" \
|
2020-07-07 17:23:30 +02:00
|
|
|
--architectures "amd64" \
|
2023-11-06 21:49:18 +01:00
|
|
|
--archive-areas "main contrib non-free non-free-firmware" \
|
2020-07-07 17:23:30 +02:00
|
|
|
--apt-recommends "true" \
|
|
|
|
--debian-installer-gui "true" \
|
|
|
|
--debian-installer "live" \
|
2020-07-09 18:01:36 +02:00
|
|
|
--bootappend-live "lang=fr_FR.UTF-8 locales=fr_FR.UTF-8 keyboard-layouts=fr splash timezone=Europe/Paris utc=yes keyboard-model=pc105 hostname=svprognu boot=live persistence components username=svpro_gnu" \
|
2020-07-07 17:23:30 +02:00
|
|
|
--bootappend-install "locales=fr_FR.UTF-8" \
|
2022-11-19 23:45:18 +01:00
|
|
|
--binary-images "iso-hybrid" \
|
2020-07-07 17:23:30 +02:00
|
|
|
--uefi-secure-boot "enable" \
|
|
|
|
--linux-flavours "amd64" \
|
|
|
|
--linux-packages "linux-image linux-headers" \
|
2023-11-06 21:49:18 +01:00
|
|
|
--iso-volume "SVPROGNU-12" \
|
|
|
|
--iso-application "SVPROGNU-12" \
|
2020-07-07 17:23:30 +02:00
|
|
|
--backports "false" \
|
|
|
|
--updates "true" \
|
2022-11-18 15:34:27 +01:00
|
|
|
--security "true" \
|
2020-07-07 17:23:30 +02:00
|
|
|
"${@}"
|