mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
33 lines
537 B
Plaintext
Executable File
33 lines
537 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
description="VideoLAN daemon"
|
|
pidfile="/var/run/vlc/${RC_SVCNAME}.pid"
|
|
command="/usr/bin/vlc"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --directory --owner vlc:vlc --mode 775 ${pidfile%/*}
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting ${RC_SVCNAME}"
|
|
start-stop-daemon --start \
|
|
--user vlc \
|
|
--pidfile ${pidfile} \
|
|
--exec ${command} \
|
|
-- \
|
|
--daemon --pidfile ${pidfile} ${VLC_OPTS}
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping ${RC_SVCNAME}"
|
|
start-stop-daemon --stop \
|
|
--pidfile ${pidfile}
|
|
eend $?
|
|
}
|