svn commit: r193197 - head/etc/rc.d

Doug Barton dougb at FreeBSD.org
Mon Jun 1 04:55:14 UTC 2009


Author: dougb
Date: Mon Jun  1 04:55:13 2009
New Revision: 193197
URL: http://svn.freebsd.org/changeset/base/193197

Log:
  Substitute ypset for ypbind in REQUIRE lines. If you use ypset it has to
  happen right after ypbind, and before anything that uses NIS. The only
  change in rcorder accomplished by this patch is make that happen.
  
  PR:		conf/117555
  Submitted by:	John Marshall <john at rwsrv05.mby.riverwillow.net.au>

Modified:
  head/etc/rc.d/amd
  head/etc/rc.d/keyserv
  head/etc/rc.d/nisdomain
  head/etc/rc.d/quota
  head/etc/rc.d/yppasswdd

Modified: head/etc/rc.d/amd
==============================================================================
--- head/etc/rc.d/amd	Mon Jun  1 04:44:43 2009	(r193196)
+++ head/etc/rc.d/amd	Mon Jun  1 04:55:13 2009	(r193197)
@@ -4,7 +4,7 @@
 #
 
 # PROVIDE: amd
-# REQUIRE: rpcbind ypbind nfsclient cleanvar ldconfig
+# REQUIRE: rpcbind ypset nfsclient cleanvar ldconfig
 # BEFORE: DAEMON
 # KEYWORD: nojail shutdown
 

Modified: head/etc/rc.d/keyserv
==============================================================================
--- head/etc/rc.d/keyserv	Mon Jun  1 04:44:43 2009	(r193196)
+++ head/etc/rc.d/keyserv	Mon Jun  1 04:55:13 2009	(r193197)
@@ -6,7 +6,7 @@
 # Start keyserv if we are running Secure RPC
 
 # PROVIDE: keyserv
-# REQUIRE: ypbind
+# REQUIRE: ypset
 # BEFORE: DAEMON
 # KEYWORD: shutdown
 

Modified: head/etc/rc.d/nisdomain
==============================================================================
--- head/etc/rc.d/nisdomain	Mon Jun  1 04:44:43 2009	(r193196)
+++ head/etc/rc.d/nisdomain	Mon Jun  1 04:55:13 2009	(r193197)
@@ -28,7 +28,7 @@
 
 # PROVIDE: nisdomain
 # REQUIRE: SERVERS rpcbind
-# BEFORE:  ypbind ypserv ypxfrd
+# BEFORE:  ypset ypbind ypserv ypxfrd
 
 . /etc/rc.subr
 

Modified: head/etc/rc.d/quota
==============================================================================
--- head/etc/rc.d/quota	Mon Jun  1 04:44:43 2009	(r193196)
+++ head/etc/rc.d/quota	Mon Jun  1 04:55:13 2009	(r193197)
@@ -6,7 +6,7 @@
 # Enable/Check the quotas (must be after ypbind if using NIS)
 
 # PROVIDE: quota
-# REQUIRE: mountcritremote
+# REQUIRE: mountcritremote ypset
 # BEFORE: DAEMON
 # KEYWORD: nojail
 

Modified: head/etc/rc.d/yppasswdd
==============================================================================
--- head/etc/rc.d/yppasswdd	Mon Jun  1 04:44:43 2009	(r193196)
+++ head/etc/rc.d/yppasswdd	Mon Jun  1 04:55:13 2009	(r193197)
@@ -4,7 +4,7 @@
 #
 
 # PROVIDE: yppasswdd
-# REQUIRE: ypserv ypbind
+# REQUIRE: ypserv ypset
 # BEFORE:  LOGIN
 # KEYWORD: shutdown
 


More information about the svn-src-head mailing list