blob: 2c431c90f042b5ef604ed9ef2633a4a0614f3569 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
depend() {
need net
}
start() {
ebegin "Starting VLC"
start-stop-daemon --start --oknodo \
--pidfile /var/run/vlc.pid --chuid vlc \
--exec /usr/bin/vlc -- ${VLC_OPTS}
eend $?
}
stop () {
ebegin "Stopping VLC"
start-stop-daemon --stop --oknodo --exec /usr/bin/vlc
eend $?
}
|