]> git.ipfire.org Git - people/ms/ipfire-2.x.git/commitdiff
mpd: fix chown syntax
authorArne Fitzenreiter <arne_f@ipfire.org>
Sun, 29 Sep 2024 07:44:55 +0000 (09:44 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 29 Sep 2024 11:28:26 +0000 (11:28 +0000)
this remove a warning at boot that user and group should
seperated by ":" and not by "."

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

diff --git a/lfs/mpd b/lfs/mpd
index 6fd78f2af6d11ad077cde43bd6f4ce61d9fc4a8e..4ef453fb176e969fba58230da33cfb679376f452 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    = 40
+PAK_VER    = 41
 # SUP_ARCH   = aarch64 x86_64
 
 DEPS       = alsa avahi faad2 ffmpeg flac lame libmad libshout libogg libid3tag libvorbis opus soxr fmt
index d42c0c549509fbd0d9cc5525683919321bd31c17..4d031c4723c3db9c54c4c4c4ac56780c30fdb45d 100644 (file)
@@ -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
                ;;