blob: a9daef79591504107b1d602b405780e5125cba79 (
plain)
1
2
3
4
|
#!/bin/bash
systemctl status boot-digest-check.service|grep -q failed
[ $? -eq 0 ] && notify-send -t 0 -u critical -i error --app-name='Boot partition WARNING' 'Checksum DIFFERS from saved state. Your unencrypted boot partition may have been manipulated!'
|