8 lines
182 B
Bash
8 lines
182 B
Bash
#!/bin/sh
|
|
|
|
trap "kill $PID" HUP INT TERM
|
|
#su-exec mopidy icecast -c /data/.config/icecast.xml -b &
|
|
su-exec mopidy mopidy --config /data/.config/mopidy.conf "${@}" &
|
|
PID=$!
|
|
wait $PID
|