1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-15 12:15:22 +03:00
aports/community/bordeaux/bordeaux.initd
2024-11-07 15:09:12 +00:00

21 lines
403 B
Bash

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