mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 21:32:22 +01:00
15 lines
276 B
Bash
15 lines
276 B
Bash
#!/sbin/openrc-run
|
|
|
|
supervisor=supervise-daemon
|
|
name="ergo"
|
|
command="/usr/bin/ergo"
|
|
command_args="run --conf ${ERGO_CONFIGFILE:-'/etc/ergo/ircd.yaml'}"
|
|
command_user="ergo:ergo"
|
|
command_background=true
|
|
pidfile="/run/ergo.pid"
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|