diff options
Diffstat (limited to 'init.d')
-rw-r--r-- | init.d/bootmisc.in | 2 | ||||
-rw-r--r-- | init.d/fsck.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/init.d/bootmisc.in b/init.d/bootmisc.in index a19a10b1..c6894e42 100644 --- a/init.d/bootmisc.in +++ b/init.d/bootmisc.in @@ -126,7 +126,7 @@ start() stop() { # Write a halt record if we're shutting down - case "${RC_SOFTLEVEL}" in + case "${RC_RUNLEVEL}" in reboot|shutdown) [ "${RC_UNAME}" = "Linux" ] && halt -w;; esac diff --git a/init.d/fsck.in b/init.d/fsck.in index d03e1417..5bf9ba8a 100644 --- a/init.d/fsck.in +++ b/init.d/fsck.in @@ -19,7 +19,7 @@ _abort() { # We should only reboot when first booting _reboot() { - if [ "${RC_SOFTLEVEL}" = "${RC_BOOTLEVEL}" ]; then + if [ "${RC_RUNLEVEL}" = "${RC_BOOTLEVEL}" ]; then reboot "$@" _abort || return 1 fi |