From owner-freebsd-questions@FreeBSD.ORG Mon Jul 27 22:05:50 2009 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D890110656A6 for ; Mon, 27 Jul 2009 22:05:50 +0000 (UTC) (envelope-from psteele@webmail.maxiscale.com) Received: from k2smtpout06-01.prod.mesa1.secureserver.net (k2smtpout06-01.prod.mesa1.secureserver.net [64.202.189.102]) by mx1.freebsd.org (Postfix) with SMTP id 75D698FC1B for ; Mon, 27 Jul 2009 22:05:50 +0000 (UTC) (envelope-from psteele@webmail.maxiscale.com) Received: (qmail 5771 invoked from network); 27 Jul 2009 22:05:11 -0000 Received: from unknown (HELO owa.webmail.maxiscale.com) (72.167.52.135) by k2smtpout06-01.prod.mesa1.secureserver.net (64.202.189.102) with ESMTP; 27 Jul 2009 22:05:07 -0000 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Mon, 27 Jul 2009 15:10:07 -0700 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: What order are options in rc.conf processed? Thread-Index: AcoPBPK7FWmb6D6xT1OZdH/jBDFR5wAASLZA References: <20090727214846.GX63413@dan.emsphone.com> From: "Peter Steele" To: Subject: RE: What order are options in rc.conf processed? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jul 2009 22:05:51 -0000 >rc.conf is just a script that sets a bunch of environment variables for the >/etc/rc.d/* scripts to use. The order the variables are set in that file >does not matter. If you want your script to run after network interfaces >are set up, you'll want to add a "REQUIRE: NETWORKING" line. See the >rc and rcorder manpages for more info, and take a look at the files in >/etc/rc.d/ for examples. Okay, thanks. That's exactly what I was looking for. I'll check the man page for these.