diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2015-10-26 08:41:11 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2016-01-28 17:06:25 -0600 |
commit | e52b5f59c22283b22e2b5a0d2ab9de6b92a73ebf (patch) | |
tree | 8a8a187d28c45a7084b4c503d729a393d08bb1cd | |
parent | 8a7e4d38a74c714e1a532e1b7a53fd2a5c528b63 (diff) |
savecache: stop saving nettree
Netifrc is no longer part of OpenRC, so we shouldn't save its dep tree
as part of savecache.
This should have been removed when netifrc was split out. also, it
might be related to the following bug.
X-Gentoo-Bug: 563720
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=563720
-rw-r--r-- | init.d/savecache.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d/savecache.in b/init.d/savecache.in index b3c0bdc6..665f8400 100644 --- a/init.d/savecache.in +++ b/init.d/savecache.in @@ -49,7 +49,7 @@ start() fi ebegin "Saving dependency cache" local rc=0 save= - for x in deptree depconfig shutdowntime softlevel nettree rc.log; do + for x in deptree depconfig shutdowntime softlevel rc.log; do [ -e "$RC_SVCDIR/$x" ] && save="$save $RC_SVCDIR/$x" done if [ -n "$save" ]; then |