11 lines
318 B
Bash
Executable file
11 lines
318 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
lb config noauto \
|
|
--bootappend-live "persistence boot=live config locales=fr_FR.UTF-8 keyboard-layouts=fr basemountmode=rw,noatime,umask=000" \
|
|
--bootappend-install "locales=fr_FR.UTF-8" \
|
|
--archive-areas "main contrib non-free" \
|
|
--apt-recommends true \
|
|
--architectures i386 -b hdd \
|
|
"${@}"
|