7 lines
262 B
Bash
Executable file
7 lines
262 B
Bash
Executable file
#!/bin/bash
|
|
# Default rc.local for void; add your custom commands here.
|
|
#
|
|
# This is run by runit in stage 2 before the services are executed
|
|
# (see /etc/runit/2).
|
|
|
|
[[ -x /opt/bin/pushover-client ]] && /opt/bin/pushover-client -p -1 -m "Boot up: ${HOSTNAME%%.*}"
|