diff options
Diffstat (limited to 'init.d')
-rwxr-xr-x | init.d/bootmisc | 1 | ||||
-rwxr-xr-x | init.d/checkfs | 1 | ||||
-rwxr-xr-x | init.d/checkroot | 4 | ||||
-rwxr-xr-x | init.d/local | 1 |
4 files changed, 7 insertions, 0 deletions
diff --git a/init.d/bootmisc b/init.d/bootmisc index 3ac53a22..f57a7086 100755 --- a/init.d/bootmisc +++ b/init.d/bootmisc @@ -29,6 +29,7 @@ depend() { need localmount before logger after clock sysctl + keywords notimeout } cleanup_tmp_dir() { diff --git a/init.d/checkfs b/init.d/checkfs index 4174b9b4..c29c519a 100755 --- a/init.d/checkfs +++ b/init.d/checkfs @@ -30,6 +30,7 @@ optionally repair them." depend() { need checkroot after modules + keywords notimeout } do_checkfs() { diff --git a/init.d/checkroot b/init.d/checkroot index 1397374a..acfb914a 100755 --- a/init.d/checkroot +++ b/init.d/checkroot @@ -27,6 +27,10 @@ description="Check the root filesystem according to /etc/fstab for errors \ and optionally repair them." +depend() { + keywords notimeout +} + do_mtab() { # Don't create mtab if /etc is readonly if ! printf "" 2>/dev/null >/etc/mtab; then diff --git a/init.d/local b/init.d/local index 461b4aff..d1c30d40 100755 --- a/init.d/local +++ b/init.d/local @@ -29,6 +29,7 @@ and /etc/conf.d/local.stop when stopping." depend() { after * + keywords notimeout } start() { |