From owner-freebsd-current Fri Jun 2 3:20:56 2000 Delivered-To: freebsd-current@freebsd.org Received: from axl.ops.uunet.co.za (axl.ops.uunet.co.za [196.31.2.163]) by hub.freebsd.org (Postfix) with ESMTP id C904037B529 for ; Fri, 2 Jun 2000 03:20:49 -0700 (PDT) (envelope-from sheldonh@axl.ops.uunet.co.za) Received: from sheldonh (helo=axl.ops.uunet.co.za) by axl.ops.uunet.co.za with local-esmtp (Exim 3.13 #1) id 12xoZD-0007WX-00; Fri, 02 Jun 2000 12:20:39 +0200 From: Sheldon Hearn To: Alexander Leidinger Cc: current@freebsd.org Subject: Re: Problems with source_rc_confs In-reply-to: Your message of "Fri, 02 Jun 2000 12:07:13 +0200." <200006021007.MAA49856@Magelan.Leidinger.net> Date: Fri, 02 Jun 2000 12:20:39 +0200 Message-ID: <28924.959941239@axl.ops.uunet.co.za> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Fri, 02 Jun 2000 12:07:13 +0200, Alexander Leidinger wrote: > At the moment my /etc/rc contains: > ---snip--- > # If there is a global system configuration file, suck it in. > # > if [ -r /etc/defaults/rc.conf ]; then > . /etc/defaults/rc.conf > . /etc/rc.conf > . /etc/rc.conf.local > #source_rc_confs > elif [ -r /etc/rc.conf ]; then > . /etc/rc.conf > fi Can't you just leave the files alone? rc.i386 doesn't need to source_rc_confs, because rc alrady does that: # If there is a global system configuration file, suck it in. # if [ -r /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf source_rc_confs elif [ -r /etc/rc.conf ]; then . /etc/rc.conf fi Try it with completely unmodified files. It's working for at least 3 of us. :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message