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

Garrett Cooper ngie at FreeBSD.org
Sun May 15 04:38:52 UTC 2016


Author: ngie
Date: Sun May 15 04:38:50 2016
New Revision: 299839
URL: https://svnweb.freebsd.org/changeset/base/299839

Log:
  Make FILESYSTEMS, dumpon, and var not depend on zfs and zvol
  
  Make zfs and zvol come before all of the items that depended on them
  previously
  
  MFC after: 2 weeks
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/etc/rc.d/FILESYSTEMS
  head/etc/rc.d/dumpon
  head/etc/rc.d/var
  head/etc/rc.d/zfs
  head/etc/rc.d/zvol

Modified: head/etc/rc.d/FILESYSTEMS
==============================================================================
--- head/etc/rc.d/FILESYSTEMS	Sun May 15 04:19:50 2016	(r299838)
+++ head/etc/rc.d/FILESYSTEMS	Sun May 15 04:38:50 2016	(r299839)
@@ -4,7 +4,7 @@
 #
 
 # PROVIDE: FILESYSTEMS
-# REQUIRE: root mountcritlocal cleanvar zfs
+# REQUIRE: root mountcritlocal cleanvar
 
 #	This is a dummy dependency, for services which require filesystems
 #	to be mounted before starting.  It also serves as the default early /

Modified: head/etc/rc.d/dumpon
==============================================================================
--- head/etc/rc.d/dumpon	Sun May 15 04:19:50 2016	(r299838)
+++ head/etc/rc.d/dumpon	Sun May 15 04:38:50 2016	(r299839)
@@ -4,7 +4,6 @@
 #
 
 # PROVIDE: dumpon
-# REQUIRE: zvol
 # BEFORE: disks
 # KEYWORD: nojail
 

Modified: head/etc/rc.d/var
==============================================================================
--- head/etc/rc.d/var	Sun May 15 04:19:50 2016	(r299838)
+++ head/etc/rc.d/var	Sun May 15 04:38:50 2016	(r299839)
@@ -28,7 +28,7 @@
 #
 
 # PROVIDE: var
-# REQUIRE: mountcritlocal zfs
+# REQUIRE: mountcritlocal
 
 # NFS /var is not supported, unless NFS /var is part of diskless NFS /
 

Modified: head/etc/rc.d/zfs
==============================================================================
--- head/etc/rc.d/zfs	Sun May 15 04:19:50 2016	(r299838)
+++ head/etc/rc.d/zfs	Sun May 15 04:38:50 2016	(r299839)
@@ -5,6 +5,7 @@
 
 # PROVIDE: zfs
 # REQUIRE: mountcritlocal
+# BEFORE: FILESYSTEMS var
 
 . /etc/rc.subr
 

Modified: head/etc/rc.d/zvol
==============================================================================
--- head/etc/rc.d/zvol	Sun May 15 04:19:50 2016	(r299838)
+++ head/etc/rc.d/zvol	Sun May 15 04:38:50 2016	(r299839)
@@ -5,6 +5,7 @@
 
 # PROVIDE: zvol
 # REQUIRE: hostid
+# BEFORE: dumpon
 # KEYWORD: nojail
 
 . /etc/rc.subr


More information about the svn-src-head mailing list