4 lines
155 B
Bash
Executable file
4 lines
155 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Alert that this host is going down.
|
|
[[ -x /opt/sbin/pushover-client ]] && /opt/sbin/pushover-client -p -1 -m "Shut down: ${HOSTNAME%%.*}" &
|