summaryrefslogtreecommitdiff
blob: 9ded7872ef651a3da930887b88c9381b591b5814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/sbin/runscript

depend() {
  need mpd
}

start() {
  start-stop-daemon --start -c mpd --quiet --exec /usr/bin/davempd.pl /etc/davemp.conf  
  eend $?
}

stop() {
  killall davempd.pl
  eend $?
}