From d58638800da1231071644a5ec015c8d128d9e0fa Mon Sep 17 00:00:00 2001 From: Gyurix Date: Wed, 12 Feb 2025 08:51:16 +0100 Subject: [PATCH] added statement when IP is in local network --- entrypoint.sh | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1f3e1ce..14f4311 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,18 +1,22 @@ #!/bin/sh HOMEASSISTANT_DOMAIN="https://$DOMAIN"; -SELECTOR=$HOMEASSISTANT -HOMEASSISTANT_IP=$(hostname -i | awk '{print $1}') -HOST_FILE=/etc/system/data/dns/hosts.local; -EXISTS=$(grep -w -F $SELECTOR $HOST_FILE); -if [ -n "$EXISTS" ]; then - # selector already exists in hosts file and SCALE is not in use - IP=$(echo $EXISTS | cut -d ' ' -f1); - sed "s/$IP/$HOMEASSISTANT_IP/g" $HOST_FILE > /tmp/hosts.local - mv /tmp/hosts.local $HOST_FILE; -else - echo "$HOMEASSISTANT_IP $SELECTOR" >> $HOST_FILE +if [ "$DOMAIN" == "localhost" ]; then + + SELECTOR=$HOMEASSISTANT + HOMEASSISTANT_IP=$(hostname -i | awk '{print $1}') + HOST_FILE=/etc/system/data/dns/hosts.local; + + EXISTS=$(grep -w -F $SELECTOR $HOST_FILE); + if [ -n "$EXISTS" ]; then + # selector already exists in hosts file and SCALE is not in use + IP=$(echo $EXISTS | cut -d ' ' -f1); + sed "s/$IP/$HOMEASSISTANT_IP/g" $HOST_FILE > /tmp/hosts.local + mv /tmp/hosts.local $HOST_FILE; + else + echo "$HOMEASSISTANT_IP $SELECTOR" >> $HOST_FILE + fi fi mkdir -p /etc/user/data/homeassistant/config @@ -22,13 +26,16 @@ if [ ! -f /etc/user/data/homeassistant/config/configuration.yaml ]; then echo '# Loads default set of integrations. Do not remove. default_config: homeassistant: - external_url: "http://localhost" + external_url: "'$HOMEASSISTANT_DOMAIN'" http: use_x_forwarded_for: true - trusted_proxies: - - 172.18.104.2 - - 172.18.105.2' >/etc/user/data/homeassistant/config/configuration.yaml + trusted_proxies:' >/etc/user/data/homeassistant/config/configuration.yaml + + PROXIES=$(grep -w smarthostbackend $HOST_FILE| awk '{print $1}') + for PROXY in $(echo $PROXIES) ; do +echo " - '$PROXY'" >>/etc/user/data/homeassistant/config/configuration.yaml + done fi yq eval '.homeassistant.external_url = "'$HOMEASSISTANT_DOMAIN'"' -i /etc/user/data/homeassistant/config/configuration.yaml