From owner-freebsd-current Thu Sep 5 10:51:26 2002 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 2A9F937B400 for ; Thu, 5 Sep 2002 10:51:24 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3C9643E81 for ; Thu, 5 Sep 2002 10:51:23 -0700 (PDT) (envelope-from makonnen@pacbell.net) Received: from kokeb.ambesa.net ([64.173.11.206]) by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0H1Z00C4I89N1S@mta7.pltn13.pbi.net> for current@FreeBSD.ORG; Thu, 05 Sep 2002 10:51:23 -0700 (PDT) Received: from kokeb.ambesa.net (tanstaafl@localhost [IPv6:::1]) by kokeb.ambesa.net (8.12.5/8.12.5) with ESMTP id g85I4AqS055031; Thu, 05 Sep 2002 11:04:10 -0700 (PDT envelope-from mtm@kokeb.ambesa.net) Received: (from mtm@localhost) by kokeb.ambesa.net (8.12.5/8.12.5/Submit) id g85I49CN055030; Thu, 05 Sep 2002 11:04:09 -0700 (PDT) Date: Thu, 05 Sep 2002 11:04:09 -0700 From: Mike Makonnen Subject: Re: rcNg messages In-reply-to: <20020905131601.O845-100000@beagle.fokus.gmd.de> To: Harti Brandt Cc: current@FreeBSD.ORG Message-id: <20020905110409.0caa771a.makonnen@pacbell.net> MIME-version: 1.0 X-Mailer: Sylpheed version 0.8.2 (GTK+ 1.2.10; i386-portbld-freebsd5.0) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT References: <20020905131601.O845-100000@beagle.fokus.gmd.de> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 05 Sep 2002 13:17:04 +0200 (CEST) Harti Brandt wrote: > rcorder: requirement `ppp' in file `/etc/rc.d/rpcbind' has no providers. > rcorder: requirement `beforenetlkm' in file `/etc/rc.d/ipsec' has no > providers. rcorder: requirement `beforenetlkm' in file `/etc/rc.d/ipfilter' > has no providers. rcorder: requirement `altqd' in file > `/etc/rc.d/NETWORKING' has no providers. rcorder: requirement `dhclient' in > file `/etc/rc.d/NETWORKING' has no providers. rcorder: requirement `network' > in file `/etc/rc.d/NETWORKING' has no providers. Well, gordon made a commit yesterday to prevent scripts not used by FreeBSD from being installed. rcorder is complaining because some of those scripts are in the REQUIRE line of the installed scripts. While your startup order may be subtly different because of it, it's a benign error message (in this case). You can redirect it to /dev/null with the following patch. Cheers, Mike Makonnen Index: etc/rc =================================================================== RCS file: /home/ncvs/src/etc/rc,v retrieving revision 1.317 diff -u -r1.317 rc --- etc/rc 15 Aug 2002 03:24:47 -0000 1.317 +++ etc/rc 5 Sep 2002 17:54:32 -0000 @@ -84,7 +84,7 @@ fi os=`eval ${CMD_OSTYPE}` - files=`rcorder -k ${os} -s nostart /etc/rc.d/*` + files=`rcorder 2>/dev/null -k ${os} -s nostart /etc/rc.d/*` for _rc_elem in ${files}; do run_rc_script ${_rc_elem} ${_boot} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message