From: Arne Fitzenreiter Date: Sun, 25 Feb 2024 08:49:10 +0000 (+0100) Subject: mpd: fix database path in initskript X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=e56646a748fda6d9143a6e7e1236e16fdf9eadaa mpd: fix database path in initskript i had forgotten this path after moving the database from /var/ipfire/mpfire to /var/ipfire/mpd Signed-off-by: Arne Fitzenreiter --- diff --git a/lfs/mpd b/lfs/mpd index 351fe1942..c05d34d8e 100644 --- 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 diff --git a/src/initscripts/packages/mpd b/src/initscripts/packages/mpd index 977001140..d42c0c549 100644 --- a/src/initscripts/packages/mpd +++ b/src/initscripts/packages/mpd @@ -2,7 +2,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2022 IPFire Team # +# Copyright (C) 2007-2024 IPFire Team # # # # 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 ;;