bash-stuff/boot-verify-sign

10 lines
239 B
Plaintext
Raw Normal View History

2024-05-30 01:42:30 +01:00
#!/bin/bash
/bin/bash /usr/local/sbin/verify-boot;
if [ $? != 0 ]; then
echo "Bad" > /opt/boot-verify-state;
/bin/bash /usr/local/sbin/sign-boot;
echo "Good" > /opt/boot-verify-state;
else
echo "Good" > /opt/boot-verify-state;
fi;