diff options
author | trasz <trasz@FreeBSD.org> | 2015-10-18 14:59:38 +0000 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2015-10-18 14:59:38 +0000 |
commit | 669694f0678ab1c67d085d94eba43fcd56be66ef (patch) | |
tree | a1a9e33ae1a8bd6f531eccc4cea38418146eeb8a | |
parent | da664065e6808e1518b697f0d9a7b8f14c8851ef (diff) | |
download | FreeBSD-src-669694f0678ab1c67d085d94eba43fcd56be66ef.zip FreeBSD-src-669694f0678ab1c67d085d94eba43fcd56be66ef.tar.gz |
MFC r287951:
The "automount" rc script should depend on "automountd", not the other
way around.
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | etc/rc.d/automount | 2 | ||||
-rw-r--r-- | etc/rc.d/automountd | 2 | ||||
-rw-r--r-- | etc/rc.d/autounmountd | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/etc/rc.d/automount b/etc/rc.d/automount index c394694..7f43b45 100644 --- a/etc/rc.d/automount +++ b/etc/rc.d/automount @@ -4,7 +4,7 @@ # # PROVIDE: automount -# REQUIRE: nfsclient +# REQUIRE: nfsclient automountd # KEYWORD: nojail shutdown . /etc/rc.subr diff --git a/etc/rc.d/automountd b/etc/rc.d/automountd index 6d74665..01a2e0b 100644 --- a/etc/rc.d/automountd +++ b/etc/rc.d/automountd @@ -4,7 +4,7 @@ # # PROVIDE: automountd -# REQUIRE: automount +# REQUIRE: DAEMON # KEYWORD: nojail . /etc/rc.subr diff --git a/etc/rc.d/autounmountd b/etc/rc.d/autounmountd index c57f90d..49a27ba 100644 --- a/etc/rc.d/autounmountd +++ b/etc/rc.d/autounmountd @@ -4,7 +4,7 @@ # # PROVIDE: autounmountd -# REQUIRE: nfsclient +# REQUIRE: DAEMON # KEYWORD: nojail . /etc/rc.subr |