diff options
-rw-r--r-- | init.d/fsck.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/init.d/fsck.in b/init.d/fsck.in index f2aa62aa..f3c95188 100644 --- a/init.d/fsck.in +++ b/init.d/fsck.in @@ -93,6 +93,9 @@ stop() _abort() { return 0; } _reboot() { return 0; } + # Don't check kernel params on stop. + get_bootparam() { return 1; } + yesno "${fsck_shutdown}" && start return 0 } |