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

Doug Barton dougb at FreeBSD.org
Sat Feb 11 06:21:17 UTC 2012


Author: dougb
Date: Sat Feb 11 06:21:16 2012
New Revision: 231507
URL: http://svn.freebsd.org/changeset/base/231507

Log:
  In the days before r208307 addswap was running early in the second stage
  of rcorder. Somehow in the intervening period addswap got moved to the
  very end, which is almost certainly not what we want.
  
  This change moves it to right after kld so that for users who need it,
  they'll get it ASAP.

Modified:
  head/etc/rc.d/addswap
  head/etc/rc.d/var

Modified: head/etc/rc.d/addswap
==============================================================================
--- head/etc/rc.d/addswap	Sat Feb 11 06:05:40 2012	(r231506)
+++ head/etc/rc.d/addswap	Sat Feb 11 06:21:16 2012	(r231507)
@@ -6,7 +6,7 @@
 #
 
 # PROVIDE: addswap
-# REQUIRE: FILESYSTEMS
+# REQUIRE: FILESYSTEMS kld
 # KEYWORD: nojail
 
 . /etc/rc.subr

Modified: head/etc/rc.d/var
==============================================================================
--- head/etc/rc.d/var	Sat Feb 11 06:05:40 2012	(r231506)
+++ head/etc/rc.d/var	Sat Feb 11 06:21:16 2012	(r231507)
@@ -28,7 +28,7 @@
 #
 
 # PROVIDE: var
-# REQUIRE: FILESYSTEMS kld
+# REQUIRE: FILESYSTEMS kld addswap
 
 . /etc/rc.subr
 


More information about the svn-src-all mailing list