]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
mpd: fix database path in initskript
authorArne Fitzenreiter <arne_f@ipfire.org>
Sun, 25 Feb 2024 08:49:10 +0000 (09:49 +0100)
committerArne Fitzenreiter <arne_f@ipfire.org>
Sun, 25 Feb 2024 08:49:10 +0000 (09:49 +0100)
i had forgotten this path after moving the database from
/var/ipfire/mpfire to /var/ipfire/mpd

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
lfs/mpd
src/initscripts/packages/mpd

diff --git a/lfs/mpd b/lfs/mpd
index 351fe194267047f91479b2236c1f05c2119b16bf..c05d34d8e5fefba6e12cb6da27c260b606903091 100644 (file)
--- a/lfs/mpd
+++ b/lfs/mpd
@@ -34,7 +34,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/${THISAPP}
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = mpd
-PAK_VER    = 36
+PAK_VER    = 37
 # SUP_ARCH   = aarch64 x86_64
 
 DEPS       = alsa avahi faad2 ffmpeg flac lame libmad libshout libogg libid3tag libvorbis opus soxr fmt
index 977001140e8947a93d580d984cbfaf9143dfc313..d42c0c549509fbd0d9cc5525683919321bd31c17 100644 (file)
@@ -2,7 +2,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2024  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -25,7 +25,7 @@
 case "$1" in
        start)
                boot_mesg "Starting MPD..."
-               chown -R root.nobody /var/ipfire/mpfire/db
+               chown -R root.nobody /var/ipfire/mpd/db
                /bin/nice --5 /usr/bin/mpd
     evaluate_retval
                ;;