From owner-freebsd-current Mon Mar 20 14:32:52 2000 Delivered-To: freebsd-current@freebsd.org Received: from scam.xcf.berkeley.edu (scam.XCF.Berkeley.EDU [128.32.43.201]) by hub.freebsd.org (Postfix) with SMTP id A619E37B95E for ; Mon, 20 Mar 2000 14:32:42 -0800 (PST) (envelope-from nordwick@scam.xcf.berkeley.edu) Received: (qmail 83833 invoked by uid 27268); 20 Mar 2000 22:32:31 -0000 Message-ID: <20000320223231.83832.qmail@scam.xcf.berkeley.edu> To: freebsd-current@freebsd.org Subject: /etc/rc.firewall not reading /etc/rc.conf MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <83831.953591551.1@scam.XCF.Berkeley.EDU> Date: Mon, 20 Mar 2000 14:32:31 -0800 From: Jason Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In my 4.0 cvsupped from 3/20 /etc/rc.firewall says this: # Suck in the configuration variables. if [ -r /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf elif [ -r /etc/rc.conf ]; then . /etc/rc.conf fi which would be fine, but /etc/defaults/rc.conf says this at the top: # This is rc.conf - a file full of useful variables that you can set # to change the default startup behavior of your system. You should # not edit this file! Put any overrides into one of the ${rc_conf_files} # instead and you will be able to update these defaults later without # spamming your local configuration information. # So, following directions, I put my changes in /etc/rc.conf, but rc.firewall only looks at /etc/defaults/rc.conf. Should /etc/rc.firewall be changed to read: # Suck in the configuration variables. if [ -r /etc/defaults/rc.conf ]; then . /etc/defaults/rc.conf fi if [ -r /etc/rc.conf ]; then . /etc/rc.conf fi -jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message