mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 14:56:53 +02:00
13 lines
253 B
Bash
13 lines
253 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="filebrowser server"
|
|
command="/usr/bin/filebrowser"
|
|
command_args="$command_args"
|
|
command_background=true
|
|
command_user="filebrowser:filebrowser"
|
|
pidfile="/run/$RC_SVCNAME.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|