aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrc.single6
1 files changed, 2 insertions, 4 deletions
diff --git a/rc.single b/rc.single
index 751fca9..e8b6f08 100755
--- a/rc.single
+++ b/rc.single
@@ -8,7 +8,8 @@
run_hook single_start
-if [ "$PREVLEVEL" = "3" -o "$PREVLEVEL" = "5" ]; then
+if [ "$PREVLEVEL" != "N" ]; then
+
# Find daemons NOT in the DAEMONS array. Shut these down first
if [ -d /var/run/daemons ]; then
for daemon in $(/bin/ls -1t /var/run/daemons); do
@@ -25,9 +26,6 @@ if [ "$PREVLEVEL" = "3" -o "$PREVLEVEL" = "5" ]; then
fi
let i=i-1
done
-fi
-
-if [ "$PREVLEVEL" != "N" ]; then
# Terminate all processes
stat_busy "Sending SIGTERM To Processes"