Advertisement
DD3AH

check for scheduled reboot

Jul 7th, 2021 (edited)
1,381
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.53 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. ## CheckScheduledReboot
  4. #
  5. # Checks whether a shutdown is scheduled on a systemd-system
  6. # and gives some information about it.
  7.  
  8. if [ -e /var/run/systemd/shutdown/scheduled ]
  9. then
  10.         (
  11.         while read -r x
  12.         do
  13.                 declare -- "${x}"  
  14.         done
  15.  
  16.         echo -n "$MODE at "
  17.         date -d "@${USEC::-6}"
  18.         echo If unwanted, cancel with:
  19.         echo shutdown -c
  20.         ) < /var/run/systemd/shutdown/scheduled
  21. else
  22.         echo none
  23. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement