diff options
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 "*******************************************************************************" |