22 lines
314 B
Django/Jinja
22 lines
314 B
Django/Jinja
#!/sbin/openrc-run
|
|
|
|
name="4server-api"
|
|
description="4server API Service"
|
|
|
|
command="/4server/sbin/api"
|
|
command_args=""
|
|
pidfile="/run/${RC_SVCNAME}.pid"
|
|
command_background="yes"
|
|
|
|
|
|
output_log="/4server/data/api.log"
|
|
error_log="/4server/data/api.log"
|
|
|
|
depend() {
|
|
need net
|
|
use logger dns
|
|
after firewall
|
|
}
|
|
|
|
|