From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH] mpd: fix chown syntax Date: Sun, 29 Sep 2024 09:44:55 +0200 Message-ID: <20240929074523.2441-1-arne_f@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1106971731388067253==" List-Id: --===============1106971731388067253== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable this remove a warning at boot that user and group should seperated by ":" and not by "." Signed-off-by: Arne Fitzenreiter --- lfs/mpd | 2 +- src/initscripts/packages/mpd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/mpd b/lfs/mpd index 6fd78f2af..4ef453fb1 100644 --- a/lfs/mpd +++ b/lfs/mpd @@ -34,7 +34,7 @@ DL_FROM =3D $(URL_IPFIRE) DIR_APP =3D $(DIR_SRC)/${THISAPP} TARGET =3D $(DIR_INFO)/$(THISAPP) PROG =3D mpd -PAK_VER =3D 40 +PAK_VER =3D 41 # SUP_ARCH =3D aarch64 x86_64 =20 DEPS =3D alsa avahi faad2 ffmpeg flac lame libmad libshout libogg libi= d3tag libvorbis opus soxr fmt diff --git a/src/initscripts/packages/mpd b/src/initscripts/packages/mpd index d42c0c549..4d031c472 100644 --- a/src/initscripts/packages/mpd +++ b/src/initscripts/packages/mpd @@ -25,7 +25,7 @@ case "$1" in start) boot_mesg "Starting MPD..." - chown -R root.nobody /var/ipfire/mpd/db + chown -R root:nobody /var/ipfire/mpd/db /bin/nice --5 /usr/bin/mpd evaluate_retval ;; --=20 2.43.0 --===============1106971731388067253==--