4 lines
159 B
Bash
Executable file
4 lines
159 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Alert that this host is up.
|
|
( sleep 30; [[ -x /opt/sbin/pushover-client ]] && /opt/sbin/pushover-client -p -1 -m "Boot up: ${HOSTNAME%%.*}" ) &
|