fix: restore missing openvpn package in qbittorrent Dockerfile

The openvpn package was accidentally dropped from the PACKAGES list during
the VPN overhaul restructuring, causing OpenVPN connections to fail because
/usr/sbin/openvpn was missing from the container.

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
Agent-Logs-Url: https://github.com/alexbelgium/hassio-addons/sessions/980dc1af-1c03-4a2d-a408-e047bb765b1f
This commit is contained in:
copilot-swe-agent[bot]
2026-03-24 09:47:01 +00:00
parent 13064eb864
commit 6aa65891a2
3 changed files with 5 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
## 5.1.4-19 (24-03-2026)
- Fix OpenVPN not connecting: restore missing openvpn package in Dockerfile
## 5.1.4-18 (22-03-2026)
- Minor bugs fixed
## 5.1.4-17 (17-02-2026)

View File

@@ -113,7 +113,7 @@ RUN chmod 744 /ha_automodules.sh && /ha_automodules.sh "$MODULES" && rm /ha_auto
# && chmod a+x /etc/s6-overlay/s6-rc.d/$SCRIPTSNAME/* ; done; fi
# Manual apps
ARG PACKAGES="ipcalc wireguard-tools libnatpmp iptables ip6tables"
ARG PACKAGES="openvpn ipcalc wireguard-tools libnatpmp iptables ip6tables"
# Automatic apps & bashio
ADD "https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/ha_autoapps.sh" "/ha_autoapps.sh"

View File

@@ -143,4 +143,4 @@ schema:
slug: qbittorrent
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "5.1.4-18"
version: "5.1.4-19"