7 lines
124 B
Bash
Executable File
7 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
|
|
trap "kill $PID" HUP INT TERM
|
|
su-exec mopidy mopidy --config /data/.config/mopidy.conf "${@}" &
|
|
PID=$!
|
|
wait $PID
|