diff options
author | Bill Nottingham <notting@redhat.com> | 2004-06-29 04:21:35 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2004-06-29 04:21:35 +0000 |
commit | c5a46df5c0feddd76065a4d6121d904eea948455 (patch) | |
tree | c3637a5669c0a5fa32fbf03f4b5d239e57e09f50 | |
parent | d7fef7572e6543b9b68015b737e7b3577f59f02b (diff) | |
download | initscripts-c5a46df5c0feddd76065a4d6121d904eea948455.tar initscripts-c5a46df5c0feddd76065a4d6121d904eea948455.tar.gz initscripts-c5a46df5c0feddd76065a4d6121d904eea948455.tar.bz2 initscripts-c5a46df5c0feddd76065a4d6121d904eea948455.tar.xz initscripts-c5a46df5c0feddd76065a4d6121d904eea948455.zip |
unset LC_MESSAGES for rhgb (#126020, <ynakai@redhat.com>)
-rwxr-xr-x | rc.d/rc.sysinit | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index e6c60524..d2d647ca 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -109,7 +109,7 @@ RHGB_STARTED=0 mount -n /dev/pts if fgrep rhgb /proc/cmdline > /dev/null 2>&1 && [ "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then - /usr/bin/rhgb + LC_MESSAGES= /usr/bin/rhgb RHGB_STARTED=1 fi @@ -615,7 +615,7 @@ action $"Mounting local filesystems: " mount -a -t nonfs,nfs4,smbfs,ncpfs,cifs - # Start the graphical boot, if necessary and not done yet. if fgrep rhgb /proc/cmdline > /dev/null 2>&1 && [ "$RHGB_STARTED" -eq 0 -a "$BOOTUP" = "color" -a "$GRAPHICAL" = "yes" -a -x /usr/bin/rhgb ]; then - /usr/bin/rhgb + LC_MESSAGES= /usr/bin/rhgb RHGB_STARTED=1 fi |