Date: Thu, 05 Sep 2002 11:04:09 -0700 From: Mike Makonnen <makonnen@pacbell.net> To: Harti Brandt <brandt@fokus.gmd.de> Cc: current@FreeBSD.ORG Subject: Re: rcNg messages Message-ID: <20020905110409.0caa771a.makonnen@pacbell.net> In-Reply-To: <20020905131601.O845-100000@beagle.fokus.gmd.de> References: <20020905131601.O845-100000@beagle.fokus.gmd.de>
next in thread | previous in thread | raw e-mail | index | archive | help
On Thu, 05 Sep 2002 13:17:04 +0200 (CEST) Harti Brandt <brandt@fokus.gmd.de> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020905110409.0caa771a.makonnen>