mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-29 07:57:40 +01:00
12 lines
236 B
Plaintext
12 lines
236 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
set -euo pipefail
|
|
|
|
if bashio::config.true 'DISABLE_WEB_UI'; then
|
|
bashio::log.info "Web UI disabled."
|
|
exit 0
|
|
fi
|
|
|
|
bashio::log.info "Starting Ente web."
|
|
exec /usr/bin/ente-web
|