diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-03-08 10:50:46 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:27 +0200 |
commit | e86ed0548c27d01ce0b4163c0486487d7e7bd42d (patch) | |
tree | 2c93553a9072a6e0156a7e81d3a9fc8d8c51163f /install/ishtar-install | |
parent | 183d073bdfb6e34b482b138790243add8da6cd3f (diff) | |
download | Ishtar-e86ed0548c27d01ce0b4163c0486487d7e7bd42d.tar.bz2 Ishtar-e86ed0548c27d01ce0b4163c0486487d7e7bd42d.zip |
Isntall script: manage locale
Diffstat (limited to 'install/ishtar-install')
-rwxr-xr-x | install/ishtar-install | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/install/ishtar-install b/install/ishtar-install index 9b9fd6c4b..40cfd2d3e 100755 --- a/install/ishtar-install +++ b/install/ishtar-install @@ -249,6 +249,24 @@ EOF exit 1 fi + current_locale='' + cat >&2 <<-'EOF' + +------------------------------------------------------------------------------- + A default locale have to be set for document generation. This locale will be + used system wide. For instance for a french installation choose: fr_FR. + +EOF + while [ "$current_locale" == '' ] + do + cecho y "* Which locale do you want to use? [en_US]" + read choice + if [ -z "$choice" ]; then + current_locale='en_US' + else + current_locale=$choice + fi + done install_path='' cat >&2 <<-'EOF' @@ -319,6 +337,15 @@ EOF fi echo "" + cecho y "Configure locale" + echo "" + + apt-get install -y locales && \ + sed -i -e "s/# $current_locale.*/$current_locale.UTF-8 UTF-8/" /etc/locale.gen && \ + dpkg-reconfigure --frontend=noninteractive locales && \ + update-locale LANG=$LANG + + echo "" cecho y "Install cron script" echo "" @@ -481,6 +508,7 @@ EOF echo "ISHTAR_PATH="$full_install_path > $etc_path"config" echo "ISHTAR_DB="$default_db >> $etc_path"config" echo "ISHTAR_WEBSERVER="$webserver >> $etc_path"config" + echo "ISHTAR_LOCALE="$current_locale >> $etc_path"config" echo "# settings added to all instances" >> $etc_path"extra_settings.py" echo "" cecho g "*******************************************************************************" |