mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-13 09:42:32 +02:00
18 lines
301 B
Bash
Executable File
18 lines
301 B
Bash
Executable File
#!/sbin/openrc-run
|
|
|
|
name=yarr
|
|
command="/usr/bin/yarr"
|
|
command_user="yarr:yarr"
|
|
command_background=true
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -f "$output_log" -o "$command_user"
|
|
checkpath -f "$error_log" -o "$command_user"
|
|
}
|