Create playlist and music directory set in the configuration file (#3448)
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 17 May 2008 10:06:55 +0000 (10:06 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 17 May 2008 10:06:55 +0000 (10:06 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@11159 3c298f89-4303-0410-b956-a3cf2f4a3e73

sound/mpd/files/mpd.init

index 418cfe1..e0579f1 100644 (file)
@@ -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
+