hashboot/initscript.gentoo

34 lines
450 B
Plaintext
Raw Normal View History

2015-06-05 14:04:44 +02:00
#!/sbin/runscript
description="Check integrity of files in /boot"
depend()
{
need localmount
}
start()
{
ebegin "Checking integrity of files in /boot"
# See if hashboot.sh is accessible
which hashboot.sh > /dev/null || return 1
hashboot.sh check
if [ $? == 4 ]
2015-06-05 14:04:44 +02:00
then
echo -n "Recover files? [y/N] "
read -r yesno
if [ ${yesno} == "y" ]
then
hashboot.sh recover
fi
2015-06-05 14:04:44 +02:00
sh
return 4
elif [ $? != 0 ]
return $?
2015-06-05 14:04:44 +02:00
fi
eend 0
}