mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
14 lines
276 B
Bash
14 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
|
|
}
|