From owner-freebsd-current@FreeBSD.ORG Wed Oct 13 05:47:17 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C366A16A4CE for ; Wed, 13 Oct 2004 05:47:17 +0000 (GMT) Received: from nic.ach.sch.gr (nic.sch.gr [194.63.238.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6413343D39 for ; Wed, 13 Oct 2004 05:47:16 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: (qmail 12879 invoked by uid 207); 13 Oct 2004 05:47:14 -0000 Received: from keramida@freebsd.org by nic by uid 201 with qmail-scanner-1.21 (sophie: 3.04/2.19/3.81. Clear:RC:1(81.186.70.167):. Processed in 1.446325 secs); 13 Oct 2004 05:47:15 -0000 Received: from dialup167.ach.sch.gr (HELO gothmog.gr) ([81.186.70.167]) (envelope-sender ) by nic.sch.gr (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 13 Oct 2004 05:47:12 -0000 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id i9D5kLaT000725 for ; Wed, 13 Oct 2004 08:46:21 +0300 (EEST) (envelope-from keramida@freebsd.org) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id i9D5kJho000724 for current@freebsd.org; Wed, 13 Oct 2004 08:46:19 +0300 (EEST) (envelope-from keramida@freebsd.org) Date: Wed, 13 Oct 2004 08:46:19 +0300 From: Giorgos Keramidas To: current@freebsd.org Message-ID: <20041013054618.GA676@gothmog.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-DCC--Metrics: nic 32702; Body=1 Fuz1=1 Fuz2=1 Subject: defaults/rc.conf broken X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Oct 2004 05:47:17 -0000 Hi all, When running mergemaster in recent CURRENT versions (after 12 Oct), pay colse attention to the changes made to /etc/defaults/rc.conf and make sure you apply the following patch as needed. With an unclosed quote in defaults/rc.conf all sorts of extremely funny things happen when booting :-) %% Index: rc.conf =================================================================== RCS file: /home/ncvs/src/etc/defaults/rc.conf,v retrieving revision 1.223 diff -u -r1.223 rc.conf --- rc.conf 12 Oct 2004 18:45:15 -0000 1.223 +++ rc.conf 13 Oct 2004 05:42:50 -0000 @@ -437,8 +437,7 @@ osf1_enable="NO" # Alpha OSF/1 emulation loaded at startup (or NO). clear_tmp_enable="NO" # Clear /tmp at startup. ldconfig_insecure="NO" # Set to YES to disable ldconfig security checks -ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib /usr/local/lib/com -pat/pkg" +ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib /usr/local/lib/compat/pkg" # shared library search paths ldconfig_paths_aout="/usr/lib/compat/aout /usr/X11R6/lib/aout /usr/local/lib/aout" # a.out shared library search paths %%