updated on Mon Jan 16 00:01:41 UTC 2012
[aur-mirror.git] / boot-digest / bootdigest.scriptlet
blob5d11840e003f2d28a2222bde0377ac7400209ad9
1 # -*- sh -*-
2 # vim:ft=sh:ts=8:sw=4:noet
4 AddConfigHandler BootDigestOptions
5 AddConfigHelp "BootDigest <boolean>" "This will enable boot digest check upon resume."
7 CheckDigest() {
8     if boot-digest-check; then
9         echo "digest-check on /boot passed"
10     else
11         echo "digest-check on /boot FAILED!!!"
12         echo "Someone might have tampered with your boot files!"
13     fi
14     return 0
17 BootDigestOptions() {
18     case $1 in
19         bootdigest)
20             AddResumeHook 55 CheckDigest
21             ;;
22         *)
23             return 1
24     esac
25     return 0
28 # $Id: $