11 lines
261 B
Bash
11 lines
261 B
Bash
|
#!/sbin/openrc-run
|
||
|
|
||
|
command="/usr/bin/bouncer"
|
||
|
command_args="--workdir /usr/share/bouncer --config /etc/bouncer/config.yml server admin run"
|
||
|
supervisor=supervise-daemon
|
||
|
output_log="/var/log/bouncer/admin.log"
|
||
|
error_log="$output_log"
|
||
|
|
||
|
depend() {
|
||
|
need net
|
||
|
}
|