From owner-svn-src-all@freebsd.org Fri Sep 18 06:54:53 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC7599CDF89; Fri, 18 Sep 2015 06:54:53 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DDCC41362; Fri, 18 Sep 2015 06:54:53 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8I6sr6E087250; Fri, 18 Sep 2015 06:54:53 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8I6srcw087247; Fri, 18 Sep 2015 06:54:53 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <201509180654.t8I6srcw087247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Fri, 18 Sep 2015 06:54:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r287951 - head/etc/rc.d X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2015 06:54:54 -0000 Author: trasz Date: Fri Sep 18 06:54:52 2015 New Revision: 287951 URL: https://svnweb.freebsd.org/changeset/base/287951 Log: The "automount" rc script should depend on "automountd", not the other way around. MFC after: 1 month Sponsored by: The FreeBSD Foundation Modified: head/etc/rc.d/automount head/etc/rc.d/automountd head/etc/rc.d/autounmountd Modified: head/etc/rc.d/automount ============================================================================== --- head/etc/rc.d/automount Fri Sep 18 05:59:15 2015 (r287950) +++ head/etc/rc.d/automount Fri Sep 18 06:54:52 2015 (r287951) @@ -4,7 +4,7 @@ # # PROVIDE: automount -# REQUIRE: nfsclient +# REQUIRE: nfsclient automountd # KEYWORD: nojail shutdown . /etc/rc.subr Modified: head/etc/rc.d/automountd ============================================================================== --- head/etc/rc.d/automountd Fri Sep 18 05:59:15 2015 (r287950) +++ head/etc/rc.d/automountd Fri Sep 18 06:54:52 2015 (r287951) @@ -4,7 +4,7 @@ # # PROVIDE: automountd -# REQUIRE: automount +# REQUIRE: DAEMON # KEYWORD: nojail . /etc/rc.subr Modified: head/etc/rc.d/autounmountd ============================================================================== --- head/etc/rc.d/autounmountd Fri Sep 18 05:59:15 2015 (r287950) +++ head/etc/rc.d/autounmountd Fri Sep 18 06:54:52 2015 (r287951) @@ -4,7 +4,7 @@ # # PROVIDE: autounmountd -# REQUIRE: nfsclient +# REQUIRE: DAEMON # KEYWORD: nojail . /etc/rc.subr