blob: 541a071805c29fe3778f2fcfb259de6f7ad73abe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/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 $?
}
|