7362d16ffd
Signed-off-by: Michael Vogt <michu at neophob.com> git-svn-id: svn://svn.openwrt.org/openwrt/packages@10351 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
412 B
Bash
24 lines
412 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
START=93
|
|
|
|
start() {
|
|
#create mpd db
|
|
/usr/bin/mpd --stdout --create-db
|
|
|
|
#optional export for mpc
|
|
#export MPD_HOST=127.0.0.1
|
|
|
|
#start mpd
|
|
/usr/bin/mpd
|
|
|
|
#generate playlist and start to play
|
|
/usr/bin/mpc listall | /usr/bin/mpc add -
|
|
/usr/bin/mpc play
|
|
/usr/bin/mpc repeat
|
|
}
|
|
|
|
stop() {
|
|
killall mpd
|
|
}
|
|
|