aboutsummaryrefslogtreecommitdiffstats
path: root/main/vlc/vlc.initd
blob: 8fe3b4866006a801ac322d781dda199e561e4cca (plain)
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/runscript

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 $?
}