aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2006-10-26 20:59:48 +0000
committerBill Nottingham <notting@redhat.com>2006-10-26 20:59:48 +0000
commit1687871f94806ba7dbea95c02dda1deebf8a848e (patch)
tree2b90dc9fa45bf62069db73e60a9a2b9f71ef4f07
parentcfc45d608bb0d01626f255b82e0b1f7542b402bb (diff)
downloadinitscripts-1687871f94806ba7dbea95c02dda1deebf8a848e.tar
initscripts-1687871f94806ba7dbea95c02dda1deebf8a848e.tar.gz
initscripts-1687871f94806ba7dbea95c02dda1deebf8a848e.tar.bz2
initscripts-1687871f94806ba7dbea95c02dda1deebf8a848e.tar.xz
initscripts-1687871f94806ba7dbea95c02dda1deebf8a848e.zip
fix or_IN and similar locales (#212438)
-rwxr-xr-xrc.d/init.d/functions16
-rwxr-xr-xrc.d/rc.sysinit4
2 files changed, 3 insertions, 17 deletions
diff --git a/rc.d/init.d/functions b/rc.d/init.d/functions
index 4c4fdd97..580216d1 100755
--- a/rc.d/init.d/functions
+++ b/rc.d/init.d/functions
@@ -19,21 +19,7 @@ export PATH
[ -z "${CONSOLETYPE:-}" ] && CONSOLETYPE="`/sbin/consoletype`"
if [ -f /etc/sysconfig/i18n -a -z "${NOLOCALE:-}" ] ; then
- . /etc/sysconfig/i18n
- if [ "$CONSOLETYPE" != "pty" ]; then
- case "${LANG:-}" in
- ja_JP*|ko_KR*|zh_CN*|zh_TW*|bn_*|bd_*|pa_*|hi_*|ta_*|gu_*)
- export LC_MESSAGES=en_US
- export LANG
- ;;
- *)
- export LANG
- ;;
- esac
- else
- [ -n "${LC_MESSAGES:-}" ] && export LC_MESSAGES
- export LANG
- fi
+ . /etc/profile.d/lang.sh
fi
# Read in our configuration
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 2b732697..60e034c1 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -349,7 +349,7 @@ mount -n /dev/pts >/dev/null 2>&1
[ -n "$SELINUX_STATE" ] && restorecon /dev/pts >/dev/null 2>&1
if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
- LC_MESSAGES= /usr/bin/rhgb
+ ( . /etc/sysconfig/i18n 2>/dev/null ; /usr/bin/rhgb )
RHGB_STARTED=1
fi
@@ -742,7 +742,7 @@ fi
# Start the graphical boot, if necessary and not done yet.
if strstr "$cmdline" rhgb && ! strstr "$cmdline" early-login && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then
- LC_MESSAGES= /usr/bin/rhgb
+ ( . /etc/sysconfig/i18n 2>/dev/null ; /usr/bin/rhgb )
RHGB_STARTED=1
fi