svn commit: r299648 - stable/10/etc/rc.d

Garrett Cooper ngie at FreeBSD.org
Fri May 13 09:46:24 UTC 2016


Author: ngie
Date: Fri May 13 09:46:23 2016
New Revision: 299648
URL: https://svnweb.freebsd.org/changeset/base/299648

Log:
  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

Modified:
  stable/10/etc/rc.d/SERVERS
  stable/10/etc/rc.d/kdc
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/rc.d/SERVERS
==============================================================================
--- stable/10/etc/rc.d/SERVERS	Fri May 13 09:42:57 2016	(r299647)
+++ stable/10/etc/rc.d/SERVERS	Fri May 13 09:46:23 2016	(r299648)
@@ -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.

Modified: stable/10/etc/rc.d/kdc
==============================================================================
--- stable/10/etc/rc.d/kdc	Fri May 13 09:42:57 2016	(r299647)
+++ stable/10/etc/rc.d/kdc	Fri May 13 09:46:23 2016	(r299648)
@@ -5,6 +5,7 @@
 
 # PROVIDE: kdc
 # REQUIRE: NETWORKING
+# BEFORE: SERVERS
 # KEYWORD: shutdown
 
 . /etc/rc.subr


More information about the svn-src-stable-10 mailing list