bootmisc: convert errors in clean_run function to warnings

X-Gentoo-Bug: 552418
X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=552418
This commit is contained in:
William Hubbs 2015-10-05 11:21:55 -05:00
parent 1558ad2b9e
commit bf0c0dd564

View File

@ -121,11 +121,11 @@ clean_run()
local dir local dir
# If / is still read-only due to a problem, this will fail! # If / is still read-only due to a problem, this will fail!
if ! checkpath -W /; then if ! checkpath -W /; then
eerror "/ is not writable; unable to clean up underlying /run" ewarn "/ is not writable; unable to clean up underlying /run"
return 1 return 1
fi fi
if ! checkpath -W /tmp; then if ! checkpath -W /tmp; then
eerror "/tmp is not writable; unable to clean up underlying /run" ewarn "/tmp is not writable; unable to clean up underlying /run"
return 1 return 1
fi fi
# Now we know that we can modify /tmp and / # Now we know that we can modify /tmp and /
@ -141,7 +141,7 @@ clean_run()
rc=1 rc=1
fi fi
if [ $rc -ne 0 ]; then if [ $rc -ne 0 ]; then
eerror "Could not clean up underlying /run on /" ewarn "Could not clean up underlying /run on /"
return 1 return 1
fi fi
} }