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, 11 May 2018 18:19:34
Message-Id: 1526057688.f0ad647303daca528cb9b75f9a07d422318635c2.williamh@OpenRC
1 commit: f0ad647303daca528cb9b75f9a07d422318635c2
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Wed May 9 22:54:18 2018 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Fri May 11 16:54:48 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=f0ad6473
7
8 Revert "savecache: stop saving the dependency tree"
9
10 It is safe to save the deptree, but we also need to regenerate it at
11 boot time.
12
13 init.d/savecache.in | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/init.d/savecache.in b/init.d/savecache.in
17 index 949600cd..74f17798 100644
18 --- a/init.d/savecache.in
19 +++ b/init.d/savecache.in
20 @@ -49,7 +49,7 @@ start()
21 fi
22 ebegin "Saving dependency cache"
23 local rc=0 save=
24 - for x in shutdowntime softlevel rc.log; do
25 + for x in depconfig deptree rc.log shutdowntime softlevel; do
26 [ -e "$RC_SVCDIR/$x" ] && save="$save $RC_SVCDIR/$x"
27 done
28 if [ -n "$save" ]; then