On Fri, 02 Jun 2000 12:07:13 +0200, Alexander Leidinger wrote:

> At the moment my /etc/rc contains:
> ---snip---
> # If there is a global system configuration file, suck it in.
> #
> if [ -r /etc/defaults/rc.conf ]; then
>         . /etc/defaults/rc.conf
>         . /etc/rc.conf
>         . /etc/rc.conf.local
>         #source_rc_confs
> elif [ -r /etc/rc.conf ]; then
>         . /etc/rc.conf
> fi

Can't you just leave the files alone?  rc.i386 doesn't need to
source_rc_confs, because rc alrady does that:

        # If there is a global system configuration file, suck it in.
        #
        if [ -r /etc/defaults/rc.conf ]; then
                . /etc/defaults/rc.conf
                source_rc_confs
        elif [ -r /etc/rc.conf ]; then
                . /etc/rc.conf
        fi

Try it with completely unmodified files.  It's working for at least 3 of
us. :-)

Ciao,
Sheldon.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to