aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/rc9
1 files changed, 8 insertions, 1 deletions
diff --git a/rc.d/rc b/rc.d/rc
index b165b6b4..d0f0bb66 100755
--- a/rc.d/rc
+++ b/rc.d/rc
@@ -98,7 +98,14 @@ if [ -d /etc/rc$runlevel.d ]; then
# Bring the subsystem up.
if egrep -q "(daemon |action )" $i ; then
- $i start
+ if [ "$subsys" = "halt" -o "$subsys" = "reboot" ]; then
+ unset LANG
+ unset LC_ALL
+ unset TEXTDOMAIN
+ unset TEXTDOMAINDIR
+ exec $i start
+ else
+ $i start
else
if [ "$subsys" = "halt" -o "$subsys" = "reboot" -o "$subsys" = "single" -o "$subsys" = "local" ]; then
if [ "$subsys" = "halt" -o "$subsys" = "reboot" ]; then