On Thu, 05 Sep 2002 13:17:04 +0200 (CEST)
Harti Brandt <[EMAIL PROTECTED]> 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 [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to