From d76db406b25550381de5c133abfe47f2bf6d602f Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Feb 2023 10:51:53 +0000 Subject: [PATCH 1/5] Github bot : issues linked to readme --- gazpar2mqtt/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/gazpar2mqtt/README.md b/gazpar2mqtt/README.md index de009b6d2..bd056d74e 100644 --- a/gazpar2mqtt/README.md +++ b/gazpar2mqtt/README.md @@ -1,4 +1,3 @@ -## ⚠ Open Issue : [🐛 [Gazpar2mqtt] Error with GRDF password (opened 2023-02-24)](https://github.com/alexbelgium/hassio-addons/issues/729) by [@alexballow](https://github.com/alexballow) # Home assistant add-on: gazpar2mqtt [![Donate][donation-badge]](https://www.buymeacoffee.com/alexbelgium) From 94e65508b7a86c7d222e054ca1acb73c737f7926 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 26 Feb 2023 13:06:06 +0100 Subject: [PATCH 2/5] Update 90-config_yaml.sh --- .templates/90-config_yaml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/90-config_yaml.sh b/.templates/90-config_yaml.sh index c41d8ddfd..28d80f84d 100755 --- a/.templates/90-config_yaml.sh +++ b/.templates/90-config_yaml.sh @@ -122,7 +122,7 @@ while IFS= read -r line; do python3 /env.py fi # set .env - echo "$line" >> /.env || true + echo "$KEYS=$VALUE" >> /.env || true mkdir -p /etc echo "$KEYS=$VALUE" >> /etc/environmemt # Export to scripts From 69f5c964daa56e582ad361d4a63b5a6929aa2b87 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 26 Feb 2023 13:07:30 +0100 Subject: [PATCH 3/5] Enable port by default --- spotweb/config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spotweb/config.json b/spotweb/config.json index 6234d6a0b..65042ba79 100644 --- a/spotweb/config.json +++ b/spotweb/config.json @@ -24,7 +24,7 @@ "panel_icon": "mdi:chart-timeline", "panel_title": "Spotweb", "ports": { - "80/tcp": null + "80/tcp": 9999 }, "ports_description": { "80/tcp": "Not required for Ingress" @@ -45,5 +45,5 @@ ], "slug": "spotweb", "url": "https://github.com/alexbelgium/hassio-addons/spotweb", - "version": "1.5.4-7" + "version": "1.5.4-8" } From 6d60883bf25d60649fd5f6ad949cd56a668d2f23 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 26 Feb 2023 13:07:50 +0100 Subject: [PATCH 4/5] Update CHANGELOG.md --- spotweb/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/spotweb/CHANGELOG.md b/spotweb/CHANGELOG.md index 8527d4ecb..633c24ba2 100644 --- a/spotweb/CHANGELOG.md +++ b/spotweb/CHANGELOG.md @@ -1,3 +1,4 @@ +- Enable external port by default (9999) ## 1.5.4 (07-01-2023) - Update to latest version from spotweb/spotweb From f1baf6b75e7f01e10f1c2cb93be94d902ba6021f Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 26 Feb 2023 13:38:08 +0100 Subject: [PATCH 5/5] Update 00-global_var.sh --- .templates/00-global_var.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.templates/00-global_var.sh b/.templates/00-global_var.sh index 6a910dd9e..fc71d25aa 100755 --- a/.templates/00-global_var.sh +++ b/.templates/00-global_var.sh @@ -41,7 +41,11 @@ for KEYS in "${arr[@]}"; do # Export the variable to run scripts # ###################################### export "${KEYS}='${VALUE}'" - + # set .env + echo "$KEYS=$VALUE" >> /.env || true + # set /etc/environmemt + mkdir -p /etc + echo "$KEYS=$VALUE" >> /etc/environmemt # For non s6 if cat /etc/services.d/*/*run* &>/dev/null; then sed -i "1a export $line" /etc/services.d/*/*run* 2>/dev/null; fi if cat /etc/cont-init.d/*run* &>/dev/null; then sed -i "1a export $line" /etc/cont-init.d/*run* 2>/dev/null; fi