From 6aa65891a20c161d4fde5538fdcffd0dd7ac55b4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 24 Mar 2026 09:47:01 +0000 Subject: [PATCH] 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 --- qbittorrent/CHANGELOG.md | 3 +++ qbittorrent/Dockerfile | 2 +- qbittorrent/config.yaml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/qbittorrent/CHANGELOG.md b/qbittorrent/CHANGELOG.md index 0b32855f0..c51197cb9 100644 --- a/qbittorrent/CHANGELOG.md +++ b/qbittorrent/CHANGELOG.md @@ -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) diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index 42fbfce90..2b92e0ea1 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -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" diff --git a/qbittorrent/config.yaml b/qbittorrent/config.yaml index 749b0972e..a0c2daf6e 100644 --- a/qbittorrent/config.yaml +++ b/qbittorrent/config.yaml @@ -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"