From: Florian Fainelli 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.openwrt.org/?a=commitdiff_plain;h=5b93737a51721c61b3758e9fdfe943ad657883ce;p=openwrt%2Fsvn-archive%2Farchive.git Create playlist and music directory set in the configuration file (#3448) SVN-Revision: 11159 --- diff --git a/sound/mpd/files/mpd.init b/sound/mpd/files/mpd.init index 418cfe147f..e0579f1967 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 +