From 977797d7a67033d03c4be04dba5b789ecdf2a36f Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Tue, 25 Jul 2006 22:36:42 +0000 Subject: set a default for LOCALE so it's no longer needed in /etc/profile --- rc.sysinit | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'rc.sysinit') diff --git a/rc.sysinit b/rc.sysinit index a6399ca..594dffb 100755 --- a/rc.sysinit +++ b/rc.sysinit @@ -233,20 +233,20 @@ fi : >/etc/profile.d/locale.sh chmod 755 /etc/profile.d/locale.sh # Set user defined locale -if [ "$LOCALE" != "" ]; then - stat_busy "Setting Locale: $LOCALE" - echo "export LANG=$LOCALE" >>/etc/profile.d/locale.sh - stat_done +[ "$LOCALE" != "" ] || LOCALE="en_US" +stat_busy "Setting Locale: $LOCALE" +echo "export LANG=$LOCALE" >>/etc/profile.d/locale.sh +stat_done # If locale is *.utf set console to Unicode mode - if [ "`echo $LOCALE | /bin/grep -i utf`" ]; then - stat_busy "Setting Consoles to UTF-8" - /usr/bin/kbd_mode -u - /usr/bin/dumpkeys | /bin/loadkeys --unicode - echo 'if [ "$TERM" = "linux" -a isatty ]; then echo -ne "\e%G"; fi' >>/etc/profile.d/locale.sh - stat_done - fi +if [ "`echo $LOCALE | /bin/grep -i utf`" ]; then + stat_busy "Setting Consoles to UTF-8" + /usr/bin/kbd_mode -u + /usr/bin/dumpkeys | /bin/loadkeys --unicode + echo 'if [ "$TERM" = "linux" -a isatty ]; then echo -ne "\e%G"; fi' >>/etc/profile.d/locale.sh + stat_done fi + if [ "$CONSOLEFONT" != "" ]; then stat_busy "Loading Console Font: $CONSOLEFONT" for i in `seq 1 12`; do -- cgit v1.2.3