On Monday, March 20, 2000, Jason wrote:
> Should /etc/rc.firewall be changed to read:
> 
>       # Suck in the configuration variables.
>       if [ -r /etc/defaults/rc.conf ]; then
>               . /etc/defaults/rc.conf
>       fi
>       if [ -r /etc/rc.conf ]; then
>               . /etc/rc.conf
>       fi

   No.  See /etc/defaults/rc.conf:

     rc_conf_files="/etc/rc.conf /etc/rc.conf.local"

   and at the very bottom,

     for i in ${rc_conf_files}; do
             if [ -f $i ]; then
                     . $i
             fi
     done

   So /etc/rc.conf is read in by /etc/defaults/rc.conf.

-- 
|Chris Costello <[EMAIL PROTECTED]>
|I must have slipped a disk; my pack hurts.
`------------------------------------------


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

Reply via email to