From owner-freebsd-questions@FreeBSD.ORG Mon Jul 27 21:48:26 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 AB6471065674 for ; Mon, 27 Jul 2009 21:48:26 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from mailhub.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 7B8558FC14 for ; Mon, 27 Jul 2009 21:48:26 +0000 (UTC) (envelope-from mel.flynn+fbsd.questions@mailing.thruhere.net) Received: from smoochies.rachie.is-a-geek.net (mailhub.rachie.is-a-geek.net [192.168.2.11]) by mailhub.rachie.is-a-geek.net (Postfix) with ESMTP id A043F7E821 for ; Mon, 27 Jul 2009 13:48:25 -0800 (AKDT) From: Mel Flynn To: freebsd-questions@freebsd.org Date: Mon, 27 Jul 2009 13:48:24 -0800 User-Agent: KMail/1.11.4 (FreeBSD/8.0-BETA2; KDE/4.2.4; i386; ; ) References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200907271348.24790.mel.flynn+fbsd.questions@mailing.thruhere.net> 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 21:48:26 -0000 On Monday 27 July 2009 13:43:04 Peter Steele wrote: > In a recent reboot test, when "ourapp" started, it checked to see if an > IP was assigned to the system and there was not, causing it to take an > unexpected logic path. Our understanding though was that since we had an > entry in rc.conf defining the IP then our app should have started after > that IP was assigned. Is this true or is there potentially a timing > issue here? It is false. See the manpage for rcorder, specifically the BEFORE and REQUIRE keywords. However, there still may be a timing issue, if ourapp requires the interface to be up (not just an IP assigned). -- Mel