diff options
Diffstat (limited to 'install/ishtar-prepare-instance')
-rwxr-xr-x | install/ishtar-prepare-instance | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/install/ishtar-prepare-instance b/install/ishtar-prepare-instance index fec08b119..4bdafd122 100755 --- a/install/ishtar-prepare-instance +++ b/install/ishtar-prepare-instance @@ -51,13 +51,6 @@ do_install_instance() { fi fi - export LANG=fr_FR.UTF-8 - if [ "$(locale 2>&1 >/dev/null|wc -l)" != 0 ]; then - cecho r "Unable to set LANG=$LANG properly" - cecho "Try: 'dpkg-reconfigure locales' or install the 'locales-all' package" - exit 1 - fi - if [ ! -z '$CONFIG_PATH' ]; then CONFIG_PATH="/etc/ishtar/" fi @@ -73,6 +66,13 @@ do_install_instance() { source $CONFIG_PATH/config + export LANG=$ISHTAR_LOCALE.UTF-8 + if [ "$(locale 2>&1 >/dev/null|wc -l)" != 0 ]; then + cecho r "Unable to set LANG=$LANG properly" + cecho "Try: 'dpkg-reconfigure locales' or install the 'locales-all' package" + exit 1 + fi + cd $ISHTAR_PATH INSTANCES_FILE=$CONFIG_PATH/instances |