14 lines
351 B
Bash
Executable file
14 lines
351 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
lb config noauto \
|
|
--archive-areas "main contrib non-free-firmware" \
|
|
--architectures amd64 \
|
|
--bootappend-live "boot=live components hostname=sapphic-installer username=root" \
|
|
--distribution bookworm \
|
|
--debian-installer none \
|
|
--debian-installer-gui false \
|
|
--hdd-label SapphicLinux \
|
|
--image-name SapphicLinux \
|
|
"${@}"
|