diff --git a/package/shairport-sync/S99shairport-sync b/package/shairport-sync/S99shairport-sync index 31359fc25e..54d20ff76c 100644 --- a/package/shairport-sync/S99shairport-sync +++ b/package/shairport-sync/S99shairport-sync @@ -1,12 +1,12 @@ #! /bin/sh # Additional options that are passed to Shairport Sync -OPTIONS="" +OPTIONS="-d" case "$1" in start) echo -n "Starting shairport-sync: " - start-stop-daemon -S -q -m -b -p /var/run/shairport-sync.pid --exec /usr/bin/shairport-sync -- $OPTIONS + start-stop-daemon -S -q -p /var/run/shairport-sync.pid --exec /usr/bin/shairport-sync -- $OPTIONS [ $? = 0 ] && echo "OK" || echo "FAIL" ;; stop)