On Tue, Mar 23, 1999 at 12:49:52PM +0200, a little birdie told me
that Sheldon Hearn remarked
> 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?

I have to jump in here and say 'Because that's where it's DEFINED'.

Sorry, I had to stick my nose in somewhere  ;)



---

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
| Matthew Fuller              http://www.over-yonder.net/ |
* fulle...@futuresouth.com       fulle...@over-yonder.net *
| UNIX Systems Administrator      Specializing in FreeBSD |
*   FutureSouth Communications   ISPHelp ISP Consulting   *
|  "The only reason I'm burning my candle at both ends,   |
*    is because I haven't figured out how to light the    *
|                     middle yet"                         |
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*


To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-current" in the body of the message

Reply via email to