mirror of
https://github.com/hassio-addons/addon-mopidy.git
synced 2025-05-04 19:41:46 +00:00
12 lines
408 B
Text
Executable file
12 lines
408 B
Text
Executable file
#!/command/with-contenv bashio
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Mopidy
|
|
# Runs the NGINX daemon
|
|
# ==============================================================================
|
|
declare -a options
|
|
|
|
# Wait for Mopidy to become available
|
|
bashio::net.wait_for 4478
|
|
|
|
bashio::log.info "Starting NGINX..."
|
|
exec nginx "${options[@]}"
|