tkue
10/7/2016 - 4:02 PM

Ubuntu: Check if reboot required Looks for file /var/run/reboot-required SOURCE: http://askubuntu.com/questions/164/how-can-i-tell-from-th

Ubuntu: Check if reboot required

Looks for file /var/run/reboot-required

SOURCE: http://askubuntu.com/questions/164/how-can-i-tell-from-the-command-line-whether-the-machine-requires-a-reboot

#!/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