mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 16:06:42 +02:00
17 lines
288 B
Bash
17 lines
288 B
Bash
#!/sbin/openrc-run
|
|
|
|
command="/usr/bin/empede"
|
|
command_user="empede:empede"
|
|
command_background=true
|
|
directory="/usr/lib/empede"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
output_log="/var/log/empede.log"
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -f -m 0644 -o "$command_user" "$output_log"
|
|
}
|