From owner-freebsd-current Tue Mar 23 2:50:42 1999 Delivered-To: freebsd-current@freebsd.org Received: from axl.noc.iafrica.com (axl.noc.iafrica.com [196.31.1.175]) by hub.freebsd.org (Postfix) with ESMTP id 007FB14FF6 for ; Tue, 23 Mar 1999 02:50:30 -0800 (PST) (envelope-from sheldonh@axl.noc.iafrica.com) Received: from sheldonh (helo=axl.noc.iafrica.com) by axl.noc.iafrica.com with local-esmtp (Exim 2.12 #1) id 10POkq-0001ze-00; Tue, 23 Mar 1999 12:49:52 +0200 From: Sheldon Hearn To: "Jordan K. Hubbard" Cc: current@freebsd.org Subject: Re: /etc/rc.conf, take 46! In-reply-to: Your message of "Sun, 21 Mar 1999 18:06:41 PST." <39218.922068401@zippy.cdrom.com> Date: Tue, 23 Mar 1999 12:49:52 +0200 Message-ID: <7665.922186192@axl.noc.iafrica.com> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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