From owner-freebsd-bugs@FreeBSD.ORG Sat Jul 3 06:50:22 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D428316A4CE for ; Sat, 3 Jul 2004 06:50:22 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9DB443D58 for ; Sat, 3 Jul 2004 06:50:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i636oMHN003782 for ; Sat, 3 Jul 2004 06:50:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i636oMPI003781; Sat, 3 Jul 2004 06:50:22 GMT (envelope-from gnats) Date: Sat, 3 Jul 2004 06:50:22 GMT Message-Id: <200407030650.i636oMPI003781@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Craig Carey Subject: Re: conf/68525: Loader's verbose boot mode has rc.d/localdaemon not name local scripts X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Craig Carey List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Jul 2004 06:50:23 -0000 The following reply was made to PR conf/68525; it has been noted by GNATS. From: Craig Carey To: freebsd-gnats-submit@FreeBSD.org, research@ijs.co.nz Cc: Subject: Re: conf/68525: Loader's verbose boot mode has rc.d/localdaemon not name local scripts Date: Sat, 03 Jul 2004 18:39:47 +1200 ---- A repeat of the description of the issue (with lines now wrapped): When FreeBSD 5.2 is booted with verbose logging enabled ("Boot FreeBSD with verbose logging), and when a local script kills the boot-up, then that can happen without the script being named. An old Lucent winmodem script (/usr/local/etc/rc.d/ltmdm.sh) was stopping booting of FreeBSD 5.2 after an installworld. (The localdaemons script in /etc/rc.d/ was renamed to localpkg in 2003.) Fix: The file /etc/rc.d/localpkg might have code like this, added to it: if [ `sysctl -n debug.bootverbose` -eq 1 ]; then echo "==>" ${script} fi ----