mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 06:32:36 +01:00
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name=emby
|
|
command=/usr/bin/mono
|
|
command_args="$emby_server -programdata $datadir -ffmpeg $ffmpeg -ffprobe $ffprobe"
|
|
command_background=true
|
|
pidfile=$emby_pid
|
|
start_stop_daemon_args="--user $emby_user --group $emby_group"
|
|
|
|
depend() {
|
|
use logger dns
|
|
need net
|
|
after firewall
|
|
}
|