From owner-cvs-src@FreeBSD.ORG Sat Dec 10 22:17:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4603F16A41F; Sat, 10 Dec 2005 22:17:22 +0000 (GMT) (envelope-from ebola@psychoholics.org) Received: from mail.psychoholics.org (www.psychoholics.org [64.185.102.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7413E43D78; Sat, 10 Dec 2005 22:17:11 +0000 (GMT) (envelope-from ebola@psychoholics.org) Received: from S010600e018998877.su.shawcable.net (S010600e018998877.su.shawcable.net [24.109.49.151]) by mail.psychoholics.org (Postfix) with ESMTP id 0837A15716B; Sat, 10 Dec 2005 16:08:42 -0800 (PST) From: Adam Gregoire To: Doug Barton In-Reply-To: <200512102021.jBAKLk0v038487@repoman.freebsd.org> References: <200512102021.jBAKLk0v038487@repoman.freebsd.org> Content-Type: text/plain Date: Sat, 10 Dec 2005 17:18:32 -0500 Message-Id: <1134253112.61298.9.camel@S01060080c83f4fb0.su.shawcable.net> Mime-Version: 1.0 X-Mailer: Evolution 2.5.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/etc rc src/etc/defaults rc.conf src/etc/rc.d devfs dumpon initrandom rcconf.sh resolv src/share/man/man5 rc.conf.5 src/share/man/man8 diskless.8 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Dec 2005 22:17:22 -0000 On Sat, 2005-12-10 at 20:21 +0000, Doug Barton wrote: > dougb 2005-12-10 20:21:46 UTC > > FreeBSD src repository > > Modified files: > etc rc > etc/defaults rc.conf > etc/rc.d devfs dumpon initrandom resolv > share/man/man5 rc.conf.5 > share/man/man8 diskless.8 > Removed files: > etc/rc.d rcconf.sh > Log: > Remove rcconf.sh from /etc/rc.d, and instead load the configuration > as part of rc. Doing this, and the sourcing of rc.subr after we have > determined if we are booting diskless (and correspondingly run > rc.initdiskless if necessary) are safe, and actually allow fewer files > to be needed on the diskless box. This also allows variables from > the configuration to be available to rc itself, such as ... > > Add a variable to rc.conf, early_late_divider, which designates the > script which separates the early and late stages of the boot process. > Default this to mountcritlocal, and add text to etc/defaults/rc.conf, > rc.conf(5) and diskless(8) which describes how and why one might want > to change this. > > Reviewed by: brooks > > Revision Changes Path > 1.266 +5 -0 src/etc/defaults/rc.conf > 1.338 +11 -9 src/etc/rc > 1.11 +1 -1 src/etc/rc.d/devfs > 1.11 +0 -1 src/etc/rc.d/dumpon > 1.6 +0 -1 src/etc/rc.d/initrandom > 1.5 +0 -12 src/etc/rc.d/rcconf.sh (dead) > 1.36 +0 -1 src/etc/rc.d/resolv > 1.272 +28 -1 src/share/man/man5/rc.conf.5 > 1.29 +13 -1 src/share/man/man8/diskless.8 A diff for the addition of rcconf.sh to Obsoletefiles.inc. --- ObsoleteFiles.inc.orig Sun Oct 30 05:56:07 2005 +++ ObsoleteFiles.inc Sat Dec 10 17:13:17 2005 @@ -14,6 +14,8 @@ # The file is partitioned: OLD_FILES first, then OLD_LIBS and OLD_DIRS last. # +# 20051210: rc.d/rcconf.sh removed +OLD_FILES+=etc/rc.d/rcconf.sh # 20051029: rc.d/ppp-user renamed to rc.d/ppp for convenience OLD_FILES+=etc/rc.d/ppp-user # 20051012: setkey(8) moved to /sbin/ -- Adam Gregoire