summaryrefslogtreecommitdiff
path: root/scripts/casper-bottom/14locales
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/casper-bottom/14locales')
-rwxr-xr-xscripts/casper-bottom/14locales52
1 files changed, 52 insertions, 0 deletions
diff --git a/scripts/casper-bottom/14locales b/scripts/casper-bottom/14locales
new file mode 100755
index 0000000..6d5b73c
--- /dev/null
+++ b/scripts/casper-bottom/14locales
@@ -0,0 +1,52 @@
+#! /bin/sh
+
+PREREQ=""
+DESCRIPTION="Setting up locales..."
+
+. /scripts/functions
+
+prereqs()
+{
+ echo "$PREREQ"
+}
+
+case $1 in
+# get pre-requisites
+prereqs)
+ prereqs
+ exit 0
+ ;;
+esac
+
+log_begin_msg "$DESCRIPTION"
+
+if [ -e /root/etc/default/locale ]; then
+ grep_file=/root/etc/default/locale
+ locale=$(grep 'LANG=' ${grep_file} | sed s/'LANG='// | tr -d '"' )
+elif [ -e /root/etc/environment ]; then # Old locales policy
+ grep_file=/root/etc/environment
+fi
+
+# commandline
+for x in $(cat /proc/cmdline); do
+ case $x in
+ debian-installer/locale=*)
+ locale=${x#debian-installer/locale=}
+ set_locale="true"
+ ;;
+ esac
+done
+
+if [ -z "${locale}" ]; then
+ # Set a default one
+ locale=en_US.UTF-8
+ set_locale="true"
+fi
+
+if [ ! -z "${set_locale}" ]; then
+ LANG=$(grep "^${locale}" /root/usr/share/i18n/SUPPORTED | grep UTF-8 |sed -e 's, .*,,' -e q)
+ printf 'LANG="%s"\n' "${LANG}" >> "${grep_file}"
+ chroot /root /usr/sbin/locale-gen "${LANG}"
+fi
+
+log_end_msg