#!/bin/bash
/bin/bash /usr/local/sbin/verify-boot;
if [ $? -ne 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;