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: Thu, 28 Jan 2016 23:20:12
Message-Id: 1454022385.e52b5f59c22283b22e2b5a0d2ab9de6b92a73ebf.williamh@OpenRC
1 commit: e52b5f59c22283b22e2b5a0d2ab9de6b92a73ebf
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Mon Oct 26 13:41:11 2015 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 28 23:06:25 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=e52b5f59
7
8 savecache: stop saving nettree
9
10 Netifrc is no longer part of OpenRC, so we shouldn't save its dep tree
11 as part of savecache.
12
13 This should have been removed when netifrc was split out. also, it
14 might be related to the following bug.
15
16 X-Gentoo-Bug: 563720
17 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=563720
18
19 init.d/savecache.in | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22 diff --git a/init.d/savecache.in b/init.d/savecache.in
23 index b3c0bdc..665f840 100644
24 --- a/init.d/savecache.in
25 +++ b/init.d/savecache.in
26 @@ -49,7 +49,7 @@ start()
27 fi
28 ebegin "Saving dependency cache"
29 local rc=0 save=
30 - for x in deptree depconfig shutdowntime softlevel nettree rc.log; do
31 + for x in deptree depconfig shutdowntime softlevel rc.log; do
32 [ -e "$RC_SVCDIR/$x" ] && save="$save $RC_SVCDIR/$x"
33 done
34 if [ -n "$save" ]; then