From owner-svn-src-stable@FreeBSD.ORG Tue Aug 9 20:52:12 2011 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DCDD1065670; Tue, 9 Aug 2011 20:52:12 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 5D6588FC12; Tue, 9 Aug 2011 20:52:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p79KqCe6011452; Tue, 9 Aug 2011 20:52:12 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p79KqCte011450; Tue, 9 Aug 2011 20:52:12 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201108092052.p79KqCte011450@svn.freebsd.org> From: Doug Barton Date: Tue, 9 Aug 2011 20:52:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r224742 - stable/7/sbin/rcorder X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Aug 2011 20:52:12 -0000 Author: dougb Date: Tue Aug 9 20:52:12 2011 New Revision: 224742 URL: http://svn.freebsd.org/changeset/base/224742 Log: MFC r208027: mdoc: move CAVEATS, BUGS and SECURITY CONSIDERATIONS sections to the bottom of the manpages and order them consistently. Modified: stable/7/sbin/rcorder/rcorder.8 Directory Properties: stable/7/sbin/rcorder/ (props changed) Modified: stable/7/sbin/rcorder/rcorder.8 ============================================================================== --- stable/7/sbin/rcorder/rcorder.8 Tue Aug 9 20:41:43 2011 (r224741) +++ stable/7/sbin/rcorder/rcorder.8 Tue Aug 9 20:52:12 2011 (r224742) @@ -165,3 +165,22 @@ Written by .An Perry E. Metzger Aq perry@piermont.com and .An Matthew R. Green Aq mrg@eterna.com.au . +.Sh BUGS +The +.Dq Li REQUIRE +keyword is misleading: +It doesn't describe which daemons have to be running before a script +will be started. +It describes which scripts must be placed before it in +the dependency ordering. +For example, +if your script has a +.Dq Li REQUIRE +on +.Dq Li named , +it means the script must be placed after the +.Dq Li named +script in the dependency ordering, +not necessarily that it requires +.Xr named 8 +to be started or enabled.