From: florian Date: Sat, 17 May 2008 10:06:55 +0000 (+0000) Subject: Create playlist and music directory set in the configuration file (#3448) X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=aacb53d343b6d3023eca672eefa879426fe9e6b9;p=packages.git Create playlist and music directory set in the configuration file (#3448) git-svn-id: svn://svn.openwrt.org/openwrt/packages@11159 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/sound/mpd/files/mpd.init b/sound/mpd/files/mpd.init index 418cfe147..e0579f196 100644 --- a/sound/mpd/files/mpd.init +++ b/sound/mpd/files/mpd.init @@ -3,6 +3,15 @@ START=93 start() { + #create mpd directories + md=`grep music_directory /etc/mpd.conf | cut -d "\"" -f 2 | sed "s/~/\/root/g"` + if [ ! -d $md ]; then + mkdir -p $md + fi + pld=`grep playlist_directory /etc/mpd.conf | cut -d "\"" -f 2 | sed "s/~/\/root/g"` + if [ ! -d $pld ]; then + mkdir -p $pld + fi #create mpd db /usr/bin/mpd --stdout --create-db @@ -21,4 +30,4 @@ start() { stop() { killall mpd } - \ No newline at end of file +