From 22925e9d4fdc2ab83a52bea7a227f881ea9b4495 Mon Sep 17 00:00:00 2001 From: Nick Stokoe Date: Mon, 15 Feb 2021 21:15:44 +0000 Subject: [PATCH] run.sh - don't launch icecast as it hogs the audio device --- root/usr/local/bin/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100755 => 100644 root/usr/local/bin/run.sh diff --git a/root/usr/local/bin/run.sh b/root/usr/local/bin/run.sh old mode 100755 new mode 100644 index 99adaa9..2249070 --- a/root/usr/local/bin/run.sh +++ b/root/usr/local/bin/run.sh @@ -1,7 +1,7 @@ #!/bin/sh trap "kill $PID" HUP INT TERM -su-exec mopidy icecast -c /data/.config/icecast.xml -b & +#su-exec mopidy icecast -c /data/.config/icecast.xml -b & su-exec mopidy mopidy --config /data/.config/mopidy.conf "${@}" & PID=$! wait $PID