Date: Tue, 23 Mar 1999 12:49:52 +0200 From: Sheldon Hearn <sheldonh@iafrica.com> To: "Jordan K. Hubbard" <jkh@zippy.cdrom.com> Cc: current@freebsd.org Subject: Re: /etc/rc.conf, take 46! Message-ID: <7665.922186192@axl.noc.iafrica.com> In-Reply-To: Your message of "Sun, 21 Mar 1999 18:06:41 PST." <39218.922068401@zippy.cdrom.com>
next in thread | previous in thread | raw e-mail | index | archive | help
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 majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?7665.922186192>