From a0877449f3b6193fda1b1d2d6f5fdf34f4096c9d Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 7 Sep 2012 19:18:51 -0500 Subject: [PATCH] savecache: make sure $RC_LIBEXECDIR is writable This is needed in case of a read-only root filesystem such as a diskless client. Reported-by: X-Gentoo-Bug: 430382 X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=430382 --- init.d/savecache.in | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/init.d/savecache.in b/init.d/savecache.in index 373da1fa..581be598 100644 --- a/init.d/savecache.in +++ b/init.d/savecache.in @@ -13,6 +13,14 @@ start() return 1 fi fi + if ! checkpath -W "$RC_LIBEXECDIR"; then + ewarn "WARNING: ${RC_LIBEXECDIR} is not writable!" + if ! yesno "${RC_GOINGDOWN}"; then + ewarn "Unable to save deptree cache" + return 1 + fi + return 0 + fi ebegin "Saving dependency cache" local rc= if [ ! -d "$RC_LIBEXECDIR"/cache ]; then