mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-10-15 17:31:59 +02:00
16 lines
269 B
Plaintext
16 lines
269 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
command="/usr/bin/tvheadend"
|
|
command_args="-f -c $TVHCONF -u tvheadend -g video $TVHARGS"
|
|
retry="TERM/30/KILL/5"
|
|
command_background=true
|
|
pidfile=$TVHPID
|
|
name="tvheadend"
|
|
required_dirs=$TVHCONF
|
|
|
|
depend() {
|
|
use logger dns
|
|
need net
|
|
after firewall
|
|
}
|