> In my 4.0 cvsupped from 3/20 /etc/rc.firewall says this:
>
> # Suck in the configuration variables.
> if [ -r /etc/defaults/rc.conf ]; then
> . /etc/defaults/rc.conf
> elif [ -r /etc/rc.conf ]; then
> . /etc/rc.conf
> fi
>
> which would be fine, but /etc/defaults/rc.conf says this at the top:
It is fine, since /etc/defaults/rc.conf also says this at the bottom:
##############################################################
### Allow local configuration override at the very end here ##
##############################################################
#
#
for i in ${rc_conf_files}; do
if [ -f $i ]; then
. $i
fi
done
and rc_conf_files is set to "/etc/rc.conf /etc/rc.conf.local"
by default.
- Jordan
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message