From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 71473139694 for ; Tue, 28 Feb 2017 23:44:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4716E0C52; Tue, 28 Feb 2017 23:44:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8274FE0C52 for ; Tue, 28 Feb 2017 23:44:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B67DC3416A4 for ; Tue, 28 Feb 2017 23:44:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2996F580A for ; Tue, 28 Feb 2017 23:44:38 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1488325446.4a269674b765e5267f024fa55c8644480a7304ea.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/localmount.in init.d/netmount.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 4a269674b765e5267f024fa55c8644480a7304ea X-VCS-Branch: master Date: Tue, 28 Feb 2017 23:44:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7558cfdf-4335-4d4a-8ba3-78f0df39e35c X-Archives-Hash: 452dd96393f8e3500606c764b58d1582 commit: 4a269674b765e5267f024fa55c8644480a7304ea Author: William Hubbs gmail com> AuthorDate: Tue Feb 28 23:44:06 2017 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Feb 28 23:44:06 2017 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=4a269674 make sure netmount and localmount start after root init.d/localmount.in | 4 ++-- init.d/netmount.in | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/init.d/localmount.in b/init.d/localmount.in index cae80c34..9920dc9e 100644 --- a/init.d/localmount.in +++ b/init.d/localmount.in @@ -14,8 +14,8 @@ description="Mounts disks and swap according to /etc/fstab." depend() { need fsck - use lvm modules mtab - after lvm modules + use lvm modules mtab root + after lvm modules root keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver } diff --git a/init.d/netmount.in b/init.d/netmount.in index 7be08e11..96f5d3e0 100644 --- a/init.d/netmount.in +++ b/init.d/netmount.in @@ -20,10 +20,12 @@ depend() *) mywant="$mywant nfsclient"; break ;; esac done + after root config /etc/fstab want $mywant use afc-client amd openvpn use dns + use root keyword -docker -jail -lxc -prefix -systemd-nspawn -vserver }