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 AAEC0139694 for ; Fri, 31 Mar 2017 18:42:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E774821C028; Fri, 31 Mar 2017 18:42:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C6D7121C028 for ; Fri, 31 Mar 2017 18:42:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0226E3415B7 for ; Fri, 31 Mar 2017 18:42:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5AAD973E4 for ; Fri, 31 Mar 2017 18:42:35 +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: <1490985582.a912029462ae988ab4e2a96a0958e54a3c2e822f.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/mount-ro.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: a912029462ae988ab4e2a96a0958e54a3c2e822f X-VCS-Branch: master Date: Fri, 31 Mar 2017 18:42:35 +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: b5c67af2-7a72-4cf9-9d9c-58d32568fe0a X-Archives-Hash: 5c5fecfdd64951c43d1e0d1744826cfa commit: a912029462ae988ab4e2a96a0958e54a3c2e822f Author: William Hubbs gmail com> AuthorDate: Fri Mar 31 18:39:42 2017 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Mar 31 18:39:42 2017 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=a9120294 init.d/mount-ro: change dependency on killprocs and savecache to after killprocs always succeeds and savecache is not required by mount-ro, so we can just start after both of these have run. init.d/mount-ro.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.d/mount-ro.in b/init.d/mount-ro.in index 3553b7a3..aa7a57cb 100644 --- a/init.d/mount-ro.in +++ b/init.d/mount-ro.in @@ -13,7 +13,7 @@ description="Re-mount filesytems read-only for a clean reboot." depend() { - need killprocs savecache + after killprocs savecache keyword -docker -lxc -openvz -prefix -systemd-nspawn -vserver }