mpd: fix chown syntax

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>
This commit is contained in:
Arne Fitzenreiter
2024-09-29 09:44:55 +02:00
committed by Michael Tremer
parent dcd828666a
commit a5c7005c3d
2 changed files with 2 additions and 2 deletions

View 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
;;