add x2go/xfce-debian docker image

* VDI server with temporary encrypted /home
This commit is contained in:
Yann Autissier
2022-04-05 18:07:14 +02:00
parent 093b99b0e3
commit f05f55cfdd
9 changed files with 200 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -eu
LANG=${LANG:-C.UTF-8}
LOCALES=${LOCALES:-${LANG} ${LANG##*.}}
printf "LANG=%s\n" "${LANG}" > /etc/default/locale
rm /etc/locale.gen && printf "%s\n" "${LOCALES}" |while read locale; do
printf "%s\n" "${locale}" >> /etc/locale.gen
done && locale-gen