Initial commit with core behavior

This commit is contained in:
Luke 2019-10-06 15:47:07 -07:00
commit 8c66602158
12 changed files with 502 additions and 0 deletions

3
reboot_msg.sh Normal file
View file

@ -0,0 +1,3 @@
#!/bin/bash
# Just throw a message out to the world if we're expecting to reboot soon.
if [[ -e /var/run/reboot-required ]]; then echo "Waiting on reboot."; fi