mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 10:21:02 +01:00
9 lines
220 B
Plaintext
Executable File
9 lines
220 B
Plaintext
Executable File
#!/usr/bin/with-contenv bashio
|
|
set -euo pipefail
|
|
if bashio::config.true 'DISABLE_WEB_UI'; then
|
|
bashio::log.info "Web UI disabled by option."
|
|
exit 0
|
|
fi
|
|
bashio::log.info "Starting Ente web."
|
|
exec /usr/bin/ente-web
|