diff options
author | Joe M <joe9mail@gmail.com> | 2014-08-29 09:10:58 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2014-08-29 09:10:58 -0500 |
commit | d032b17897278659ae103d1bcf2aea7739cdbfbb (patch) | |
tree | 9a5e737865ca2c4182eefdf95215ed437e233fff /init.d/savecache.in | |
parent | d4204a97a2410fcf37a64385204e6452c6958e8d (diff) |
savecache: check permissions on the correct directory
Diffstat (limited to 'init.d/savecache.in')
-rw-r--r-- | init.d/savecache.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/init.d/savecache.in b/init.d/savecache.in index 9040732c..dde02ddf 100644 --- a/init.d/savecache.in +++ b/init.d/savecache.in @@ -13,8 +13,8 @@ start() return 1 fi fi - if ! checkpath -W "$RC_LIBEXECDIR"; then - ewarn "WARNING: ${RC_LIBEXECDIR} is not writable!" + if ! checkpath -W "$RC_LIBEXECDIR"/cache; then + ewarn "WARNING: ${RC_LIBEXECDIR}/cache is not writable!" if ! yesno "${RC_GOINGDOWN}"; then ewarn "Unable to save deptree cache" return 1 |