diff options
author | obrien <obrien@FreeBSD.org> | 2012-09-11 05:04:59 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2012-09-11 05:04:59 +0000 |
commit | 232b6c98b4c0a688d4d2a332aa9445b99c0c9352 (patch) | |
tree | 7597d37e5f2656125be99b298de4120f1f8148d5 /etc/rc.d/sshd | |
parent | 3e78c7c3828fe3a47a5a4aa4c123244820b107fc (diff) | |
download | FreeBSD-src-232b6c98b4c0a688d4d2a332aa9445b99c0c9352.zip FreeBSD-src-232b6c98b4c0a688d4d2a332aa9445b99c0c9352.tar.gz |
Simply things so that "#REQUIRE: FILESYSTEMS" means the file
systems are fully "ready to go".
'FILESYSTEMS' states: "This is a dummy dependency, for services which
require file systems to be mounted before starting." However, we have
'var' which is was run after 'FILESYSTEMS' and can mount /var if it
already isn't mounted. Furthermore, several scripts cannot use /var
until 'cleanvar' has done its thing. Thus "FILESYSTEMS" hasn't really
meant all critical file systems are fully usable.
Diffstat (limited to 'etc/rc.d/sshd')
-rwxr-xr-x | etc/rc.d/sshd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/sshd b/etc/rc.d/sshd index a932159..19b47d8 100755 --- a/etc/rc.d/sshd +++ b/etc/rc.d/sshd @@ -4,7 +4,7 @@ # # PROVIDE: sshd -# REQUIRE: LOGIN cleanvar +# REQUIRE: LOGIN FILESYSTEMS # KEYWORD: shutdown . /etc/rc.subr |