11 lines
150 B
Bash
Executable File
11 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function stop() {
|
|
kill $PID
|
|
}
|
|
|
|
trap stop HUP INT TERM
|
|
su-exec mopidy mopidy --config "${MOPIDY_CONFIG_FILE}" "${@}" &
|
|
PID=$!
|
|
wait $PID
|