On Sun, 21 Mar 1999 18:06:41 PST, "Jordan K. Hubbard" wrote:
> if [ -f /etc/defaults/rc.conf ]; then > . /etc/defaults/rc.conf > -elif [ -f /etc/rc.conf ]; then > - . /etc/rc.conf > + for i in ${rc_conf_files}; do > + if [ -f $i ]; then > + . $i > + fi > + done > fi Hi Jordan, What's the idea behind ignoring rc_conf_files just because we can't find /etc/defaults/rc.conf? Ciao, Sheldon. To Unsubscribe: send mail to majord...@freebsd.org with "unsubscribe freebsd-current" in the body of the message