1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 10:15:12 +03:00
aports/community/coventry/coventry.initd
2024-11-05 14:43:25 -05:00

20 lines
344 B
Bash

#!/sbin/openrc-run
supervisor=supervise-daemon
name=coventry
command="/usr/sbin/coventry"
pidfile="/run/coventry.pid"
extra_started_commands="reload"
depend() {
use logger dns
need net
after firewall
}
reload() {
ebegin "Reloading ${RC_SVCNAME}"
start-stop-daemon --signal HUP --pidfile "${pidfile}"
eend $?
}