3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
96c0cba649 Increment unpackerr version to v0.15.2-2
Agent-Logs-Url: https://github.com/alexbelgium/hassio-addons/sessions/eae8b432-cfc9-4557-b5df-06bef6c8f237

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
2026-04-06 20:19:17 +00:00
copilot-swe-agent[bot]
44ebe0e22f Fix env vars not propagated to s6-overlay v3 services and disable forwarder when VPN not configured
- Add /etc/s6-overlay/s6-rc.d/*/run to the injection list in 00-global_var.sh
  so environment variables reach s6 v3 service run scripts (used by hotio containers)
- Disable service-forwarder in 90-vpn.sh default case (no VPN provider)
- Add VPN_AUTO_PORT_FORWARD=false check to explicitly disable forwarder

Agent-Logs-Url: https://github.com/alexbelgium/hassio-addons/sessions/95bdc987-dd03-486d-bf05-6172624d1238

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
2026-04-06 12:07:13 +00:00
copilot-swe-agent[bot]
8ce91f7e3e Initial plan 2026-04-06 11:57:40 +00:00
9 changed files with 19 additions and 8 deletions

View File

@@ -234,7 +234,7 @@ cp "$ENV_FILE" "$ETC_ENV_FILE"
################################################################################ ################################################################################
# Inject into scripts and shells (best-effort) # Inject into scripts and shells (best-effort)
################################################################################ ################################################################################
for f in /etc/services.d/*/run /etc/cont-init.d/*.sh /entrypoint.sh /etc/bash.bashrc "${GLOBAL_VAR_FILES:-}"; do for f in /etc/services.d/*/run /etc/s6-overlay/s6-rc.d/*/run /etc/cont-init.d/*.sh /entrypoint.sh /etc/bash.bashrc "${GLOBAL_VAR_FILES:-}"; do
[[ -f "$f" ]] && inject_block "$f" [[ -f "$f" ]] && inject_block "$f"
done done

View File

@@ -553,6 +553,7 @@ If you want to do add the repository manually, please follow the procedure highl
![Update](https://img.shields.io/badge/dynamic/json?label=Updated&query=%24.last_update&url=https%3A%2F%2Fraw.githubusercontent.com%2Falexbelgium%2Fhassio-addons%2Fmaster%2Fmaintainerr%2Fupdater.json) ![Update](https://img.shields.io/badge/dynamic/json?label=Updated&query=%24.last_update&url=https%3A%2F%2Fraw.githubusercontent.com%2Falexbelgium%2Fhassio-addons%2Fmaster%2Fmaintainerr%2Fupdater.json)
![aarch64][aarch64-badge] ![aarch64][aarch64-badge]
![amd64][amd64-badge] ![amd64][amd64-badge]
![ingress][ingress-badge]
&#10003; [Manyfold](manyfold/) : Manyfold 3D model manager as a Home Assistant add-on, using the upstream image with configurable library/index paths. &#10003; [Manyfold](manyfold/) : Manyfold 3D model manager as a Home Assistant add-on, using the upstream image with configurable library/index paths.

View File

@@ -1,5 +1,3 @@
## 3.3.0-2 (06-04-2026)
- Minor bugs fixed
## 3.3.0 (2026-04-04) ## 3.3.0 (2026-04-04)
- Update to latest version from maintainerr/maintainerr (changelog : https://github.com/maintainerr/maintainerr/releases) - Update to latest version from maintainerr/maintainerr (changelog : https://github.com/maintainerr/maintainerr/releases)

View File

@@ -96,7 +96,6 @@ COPY bashio-standalone.sh /usr/local/lib/bashio-standalone.sh
RUN chmod 0755 /usr/local/lib/bashio-standalone.sh RUN chmod 0755 /usr/local/lib/bashio-standalone.sh
# Use our wrapper as entrypoint (replaces original /opt/app/start.sh) # Use our wrapper as entrypoint (replaces original /opt/app/start.sh)
WORKDIR "/config"
ENTRYPOINT [ "/usr/bin/env" ] ENTRYPOINT [ "/usr/bin/env" ]
CMD [ "/ha_entrypoint.sh" ] CMD [ "/ha_entrypoint.sh" ]

View File

@@ -68,6 +68,8 @@ devices:
environment: environment:
DATA_DIR: "/config" DATA_DIR: "/config"
image: ghcr.io/alexbelgium/maintainerr-{arch} image: ghcr.io/alexbelgium/maintainerr-{arch}
ingress: true
ingress_stream: true
init: false init: false
panel_icon: mdi:movie-search panel_icon: mdi:movie-search
map: map:
@@ -87,5 +89,5 @@ schema:
TZ: str? TZ: str?
slug: maintainerr slug: maintainerr
url: https://github.com/alexbelgium/hassio-addons/tree/master/maintainerr url: https://github.com/alexbelgium/hassio-addons/tree/master/maintainerr
version: "3.3.0-2" version: "3.3.0"
webui: "[PROTO:ssl]://[HOST]:[PORT:6246]" webui: "[PROTO:ssl]://[HOST]:[PORT:6246]"

View File

@@ -52,5 +52,5 @@ export DATA_DIR
# ─── Start Maintainerr as unprivileged node user ───────────────────────────── # ─── Start Maintainerr as unprivileged node user ─────────────────────────────
echo "[Maintainerr] Starting application on port ${UI_PORT:-6246}..." echo "[Maintainerr] Starting application on port ${UI_PORT:-6246}..."
exec gosu node /opt/app/start.sh exec gosu node /opt/app/start.sh &
# exec nginx exec nginx

View File

@@ -1,4 +1,8 @@
## v0.15.2-2 (2026-04-06)
- Fix environment variables not being passed into the container (e.g. VPN_AUTO_PORT_FORWARD, VPN_ENABLED)
- Disable VPN port forwarder service when no VPN provider is configured
## v0.15.2 (2026-03-14) ## v0.15.2 (2026-03-14)
- Update to latest version from Unpackerr/unpackerr (changelog : https://github.com/Unpackerr/unpackerr/releases) - Update to latest version from Unpackerr/unpackerr (changelog : https://github.com/Unpackerr/unpackerr/releases)

View File

@@ -100,4 +100,4 @@ schema:
slug: unpackerr slug: unpackerr
udev: true udev: true
url: https://github.com/alexbelgium/hassio-addons url: https://github.com/alexbelgium/hassio-addons
version: "v0.15.2" version: "v0.15.2-2"

View File

@@ -23,5 +23,12 @@ case "$VPN_PROVIDER" in
sed -i "1a sleep infinity" /etc/s6*/s6*/service-privoxy/run sed -i "1a sleep infinity" /etc/s6*/s6*/service-privoxy/run
sed -i "1a sleep infinity" /etc/s6*/s6*/service-proton/run sed -i "1a sleep infinity" /etc/s6*/s6*/service-proton/run
sed -i "1a sleep infinity" /etc/s6*/s6*/service-pia/run sed -i "1a sleep infinity" /etc/s6*/s6*/service-pia/run
sed -i "1a sleep infinity" /etc/s6*/s6*/service-forwarder/run
;; ;;
esac esac
# Disable port forwarder when VPN_AUTO_PORT_FORWARD is explicitly false
VPN_AUTO_PORT_FORWARD="${VPN_AUTO_PORT_FORWARD:-}"
if [ "${VPN_AUTO_PORT_FORWARD,,}" = "false" ]; then
sed -i "1a sleep infinity" /etc/s6*/s6*/service-forwarder/run 2>/dev/null || true
fi