mirror of
https://github.com/opensiriusfox/bashrc.d.git
synced 2025-06-16 04:10:12 -07:00
3 lines
160 B
Bash
3 lines
160 B
Bash
#!/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
|