10 lines
252 B
Bash
Executable file
10 lines
252 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" \
|
|
--bootappend-install "locales=fr_FR.UTF-8" \
|
|
--archive-areas "main contrib non-free" \
|
|
--apt-recommends true \
|
|
"${@}"
|