From e56646a748fda6d9143a6e7e1236e16fdf9eadaa Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Sun, 25 Feb 2024 09:49:10 +0100 Subject: [PATCH] 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 --- lfs/mpd | 2 +- src/initscripts/packages/mpd | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lfs/mpd b/lfs/mpd index 351fe19426..c05d34d8e5 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 977001140e..d42c0c5495 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 ;; -- 2.47.3