Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: init.d/
Date: Fri, 31 Mar 2017 18:42:39
Message-Id: 1490985582.a912029462ae988ab4e2a96a0958e54a3c2e822f.williamh@OpenRC
1 commit: a912029462ae988ab4e2a96a0958e54a3c2e822f
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Fri Mar 31 18:39:42 2017 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 31 18:39:42 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=a9120294
7
8 init.d/mount-ro: change dependency on killprocs and savecache to after
9
10 killprocs always succeeds and savecache is not required by mount-ro, so
11 we can just start after both of these have run.
12
13 init.d/mount-ro.in | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/init.d/mount-ro.in b/init.d/mount-ro.in
17 index 3553b7a3..aa7a57cb 100644
18 --- a/init.d/mount-ro.in
19 +++ b/init.d/mount-ro.in
20 @@ -13,7 +13,7 @@ description="Re-mount filesytems read-only for a clean reboot."
21
22 depend()
23 {
24 - need killprocs savecache
25 + after killprocs savecache
26 keyword -docker -lxc -openvz -prefix -systemd-nspawn -vserver
27 }