2016-09-19 14:23:19 -04:00
|
|
|
#!/sbin/openrc-run
|
2015-06-05 08:04:44 -04:00
|
|
|
|
|
|
|
description="Check integrity of files in /boot"
|
|
|
|
|
|
|
|
depend()
|
|
|
|
{
|
|
|
|
need localmount
|
2015-10-04 11:05:19 -04:00
|
|
|
before xdm
|
2015-06-05 08:04:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
ebegin "Checking integrity of files in /boot"
|
|
|
|
|
2015-10-03 16:58:54 -04:00
|
|
|
# See if hashboot is accessible
|
|
|
|
which hashboot > /dev/null || return 255
|
2015-06-05 08:04:44 -04:00
|
|
|
|
2015-10-03 16:58:54 -04:00
|
|
|
hashboot check
|
2015-09-29 09:55:28 -04:00
|
|
|
if [ $? -gt 0 ] && [ $? -le 3 ]
|
2015-06-05 08:04:44 -04:00
|
|
|
then
|
2015-06-05 19:58:48 -04:00
|
|
|
echo -n "Recover files? [y/N] "
|
|
|
|
read -r yesno
|
2015-09-25 18:19:06 -04:00
|
|
|
if [ "${yesno}" == "y" ]
|
2015-06-05 19:58:48 -04:00
|
|
|
then
|
2015-10-03 16:58:54 -04:00
|
|
|
hashboot recover
|
2015-06-05 19:58:48 -04:00
|
|
|
fi
|
|
|
|
|
2015-10-03 11:09:36 -04:00
|
|
|
echo "Dropping to shell. Type exit to continue."
|
2015-06-05 08:04:44 -04:00
|
|
|
sh
|
2015-10-03 11:09:36 -04:00
|
|
|
return 3
|
2015-06-05 19:58:48 -04:00
|
|
|
elif [ $? != 0 ]
|
2015-06-07 19:43:23 -04:00
|
|
|
then
|
2015-06-05 19:58:48 -04:00
|
|
|
return $?
|
2015-06-05 08:04:44 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
eend 0
|
2015-06-07 19:43:23 -04:00
|
|
|
}
|