mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-17 08:07:29 +02:00
17 lines
270 B
Bash
17 lines
270 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="Piler daemon"
|
|
|
|
command="/usr/bin/$SVCNAME"
|
|
command_args_background="-d"
|
|
pidfile="/run/piler/piler.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall mariadb
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -d -m 750 -o piler:piler /run/piler
|
|
}
|
|
|