Ubuntu: Check if reboot required
Looks for file /var/run/reboot-required
#!/bin/bash
if [ -f /var/run/reboot-required ]; then
echo 'reboot required'
fi
#!/bin/bash
# http://stackoverflow.com/questions/5050780/detect-pending-linux-shutdown
if ps -C shutdown > /dev/null; then
echo "Shutdown is pending"
else
echo "Shutdown is not scheduled
fi