diff options
author | Bill Nottingham <notting@redhat.com> | 2001-02-07 20:28:26 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2001-02-07 20:28:26 +0000 |
commit | 4db6d852afc433a7559e2de32f586458f70f79bf (patch) | |
tree | 1f76d15990a9afbbc4e5c6b760f7981b2bcadb37 | |
parent | 86b8d597ab7936b5fa5b2098f1b564c1b3e18908 (diff) | |
download | initscripts-4db6d852afc433a7559e2de32f586458f70f79bf.tar initscripts-4db6d852afc433a7559e2de32f586458f70f79bf.tar.gz initscripts-4db6d852afc433a7559e2de32f586458f70f79bf.tar.bz2 initscripts-4db6d852afc433a7559e2de32f586458f70f79bf.tar.xz initscripts-4db6d852afc433a7559e2de32f586458f70f79bf.zip |
unset LC_ALL before calling halt/reboot as well
-rwxr-xr-x | rc.d/rc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -103,6 +103,7 @@ if [ -d /etc/rc$runlevel.d ]; then if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" -o "$subsys" = "local" ]; then if [ "$subsys" = "halt" -o "$subsys" = "reboot" ]; then unset LANG + unset LC_ALL unset TEXTDOMAIN unset TEXTDOMAINDIR exec $i start |