diff options
author | ngie <ngie@FreeBSD.org> | 2016-05-13 09:46:23 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2016-05-13 09:46:23 +0000 |
commit | ca3b4476371a94443d26a1f332dff1d76c0e344d (patch) | |
tree | 0a5fd22bcfc9ac263bfb624d9d155d13bf81e2b8 | |
parent | 789a1c974139c32fcf0aed3b5523d1f83cd09038 (diff) | |
download | FreeBSD-src-ca3b4476371a94443d26a1f332dff1d76c0e344d.zip FreeBSD-src-ca3b4476371a94443d26a1f332dff1d76c0e344d.tar.gz |
MFC r298844:
Make SERVERS REQUIRE clean when MK_KERBEROS==no
Make kdc run BEFORE SERVERS instead of being REQUIREd by SERVERS,
so systems that pedantically check REQUIREs function after r270782
-rwxr-xr-x | etc/rc.d/SERVERS | 2 | ||||
-rwxr-xr-x | etc/rc.d/kdc | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.d/SERVERS b/etc/rc.d/SERVERS index 7cd156a..1cf019a 100755 --- a/etc/rc.d/SERVERS +++ b/etc/rc.d/SERVERS @@ -4,7 +4,7 @@ # # PROVIDE: SERVERS -# REQUIRE: mountcritremote abi ldconfig savecore watchdogd kdc +# REQUIRE: mountcritremote abi ldconfig savecore watchdogd # This is a dummy dependency, for early-start servers relying on # some basic configuration. diff --git a/etc/rc.d/kdc b/etc/rc.d/kdc index aef96df..ed5f078 100755 --- a/etc/rc.d/kdc +++ b/etc/rc.d/kdc @@ -5,6 +5,7 @@ # PROVIDE: kdc # REQUIRE: NETWORKING +# BEFORE: SERVERS # KEYWORD: shutdown . /etc/rc.subr |