mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-08-26 23:03:31 +02:00
Remove standalone web terminal (ttyd/tmux service, port 7681, terminal_* options, claude-direct/claude-headroom wrappers). Claude Code stays and powers Desktop cowork/dispatch sessions. Fix Headroom dashboard: proxy bound 127.0.0.1 only, mapped port 8787 refused external connections; bind 0.0.0.0. Fix dispatch/sign-in persistence: gnome-keyring package was never installed, so the autostart keyring bootstrap no-oped and Electron safeStorage was unavailable (allowlist cache + auth grants lost). Add tokensave MCP (pinned 7.2.0, source-built like RTK), real HA MCP bridge via mcp-proxy (enable_ha_mcp + ha_mcp_url/ha_mcp_token), uv for additional_pip. Register managed MCP servers in Desktop and Claude Code configs without clobbering user entries. Drop orphan options ha_smart_context/dangerously_skip_permissions. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
60 lines
3.0 KiB
Bash
Executable File
60 lines
3.0 KiB
Bash
Executable File
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
# shellcheck disable=SC2015
|
|
set -e
|
|
|
|
if bashio::config.has_value 'additional_apps'; then
|
|
bashio::log.info "Installing additional apps :"
|
|
NEWAPPS=$(bashio::config 'additional_apps')
|
|
if command -v "apt-get" &> /dev/null; then
|
|
apt-get update -o Acquire::http::Timeout=10 -o Acquire::https::Timeout=10 &> /dev/null || bashio::log.warning "Unable to update apt package lists"
|
|
fi
|
|
for packagestoinstall in ${NEWAPPS//,/ }; do
|
|
bashio::log.green "... $packagestoinstall"
|
|
if command -v "apk" &> /dev/null; then
|
|
apk add --no-cache "$packagestoinstall" &> /dev/null || (bashio::log.fatal "Error : $packagestoinstall not found")
|
|
elif command -v "apt-get" &> /dev/null; then
|
|
apt-get install -yqq --no-install-recommends "$packagestoinstall" &> /dev/null || (bashio::log.fatal "Error : $packagestoinstall not found")
|
|
elif command -v "pacman" &> /dev/null; then
|
|
pacman --noconfirm -S "$packagestoinstall" &> /dev/null || (bashio::log.fatal "Error : $packagestoinstall not found")
|
|
fi
|
|
done
|
|
fi
|
|
|
|
if bashio::config.has_value 'additional_pip'; then
|
|
for p in $(bashio::config 'additional_pip' | tr ',' ' '); do
|
|
bashio::log.green "... pip: $p"
|
|
# Prefer uv (much faster resolver/installer); fall back to pip3 when unavailable.
|
|
if command -v uv &> /dev/null; then
|
|
uv pip install --system --break-system-packages "$p" || bashio::log.fatal "Error: pip package $p failed"
|
|
else
|
|
pip3 install --break-system-packages "$p" || bashio::log.fatal "Error: pip package $p failed"
|
|
fi
|
|
done
|
|
fi
|
|
|
|
if bashio::config.has_value 'TZ'; then
|
|
TIMEZONE=$(bashio::config 'TZ')
|
|
bashio::log.info "Setting timezone to $TIMEZONE"
|
|
ln -snf /usr/share/zoneinfo/"$TIMEZONE" /etc/localtime
|
|
echo "$TIMEZONE" > /etc/timezone
|
|
fi || (bashio::log.fatal "Error : $TIMEZONE not found. Here is a list of valid timezones : https://manpages.ubuntu.com/manpages/focal/man3/DateTime::TimeZone::Catalog.3pm.html")
|
|
|
|
if bashio::config.has_value 'KEYBOARD'; then
|
|
KEYBOARD=$(bashio::config 'KEYBOARD')
|
|
bashio::log.info "Setting keyboard to $KEYBOARD"
|
|
if [ -d /var/run/s6/container_environment ]; then printf "%s" "$KEYBOARD" > /var/run/s6/container_environment/KEYBOARD; fi
|
|
grep -qxF "KEYBOARD=\"$KEYBOARD\"" ~/.bashrc 2>/dev/null || printf "%s\n" "KEYBOARD=\"$KEYBOARD\"" >> ~/.bashrc
|
|
fi || true
|
|
|
|
if bashio::config.has_value 'PASSWORD'; then
|
|
bashio::log.info "Setting password to the value defined in options"
|
|
PASSWORD=$(bashio::config 'PASSWORD')
|
|
passwd -d abc
|
|
echo -e "$PASSWORD\n$PASSWORD" | passwd abc
|
|
elif ! bashio::config.has_value 'PASSWORD' && { [[ -n "$(bashio::addon.port "3000")" ]] || [[ -n "$(bashio::addon.port "3001")" ]] }; then
|
|
bashio::log.warning "SEVERE RISK IDENTIFIED"
|
|
bashio::log.warning "You are opening an external port but your password is not defined"
|
|
bashio::log.warning "You risk being hacked ! Please disable the external ports, or use a password"
|
|
fi
|