Compare commits

..

12 Commits

Author SHA1 Message Date
github-actions
97c4f8ad8b GitHub bot: changelog [nobuild] 2026-05-12 12:30:16 +00:00
Alexandre
e937f6d555 Update config.yaml 2026-05-12 14:26:50 +02:00
Alexandre
68f990f7df Simplify VPN checks and streamline qBittorrent startup 2026-05-12 14:26:40 +02:00
github-actions
91bb34d206 GitHub bot: changelog [nobuild] 2026-05-12 12:23:26 +00:00
Alexandre
d118eccf6f Update config.yaml 2026-05-12 14:16:57 +02:00
Alexandre
d1f9725ec0 Check if VPN services are already running before start 2026-05-12 14:16:45 +02:00
Alexandre
1f82a63b69 Revert 2026-05-12 14:12:09 +02:00
github-actions
f59266ad57 GitHub bot: changelog [nobuild] 2026-05-12 10:23:59 +00:00
Alexandre
3b643c5613 Update config.yaml 2026-05-12 12:19:21 +02:00
Alexandre
a247c0c782 Merge pull request #2706 from alexbelgium/copilot/fix-qbittorrent-wireguard-connection
qbittorrent: Fix WireGuard "RTNETLINK answers: File exists" crash loop on S6 service restart
2026-05-12 08:52:00 +02:00
copilot-swe-agent[bot]
cf584b9c07 Fix WireGuard RTNETLINK File exists crash loop on S6 service restart
Agent-Logs-Url: https://github.com/alexbelgium/hassio-addons/sessions/caef8dfd-90cd-45ac-a539-6049bb90fd9b

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
2026-05-12 06:32:12 +00:00
copilot-swe-agent[bot]
58a042996c Initial plan 2026-05-12 06:28:09 +00:00
3 changed files with 12 additions and 10 deletions

View File

@@ -1,5 +1,12 @@
## 5.2.0-16 (13-05-2026)
## 5.2.0-8 (12-05-2026)
- Minor bugs fixed
## 5.2.0-7 (12-05-2026)
- Minor bugs fixed
## 5.2.0-6 (12-05-2026)
- Minor bugs fixed
## 5.2.0-3 (2026-05-12)
- Fix WireGuard "RTNETLINK answers: File exists" crash loop: clean up stale interface and routing rules before re-establishing the tunnel on S6 service restart
## 5.2.0-2 (2026-05-10)
- Fix startup loop on aarch64: drop s6-notifyoncheck wrapper so s6 supervises qbittorrent-nox directly (LSIO arm64 image has no notification-fd, causing EBADF restart loop)

View File

@@ -143,4 +143,4 @@ schema:
slug: qbittorrent
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "5.2.0-16"
version: "5.2.0-8"

View File

@@ -44,11 +44,6 @@ fi
bashio::log.info "Starting qBittorrent..."
if [ -f /etc/s6-overlay/s6-rc.d/svc-qbittorrent/notification-fd ]; then
exec \
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost ${WEBUI_PORT}" \
s6-setuidgid abc /app/qbittorrent-nox --webui-port="${WEBUI_PORT}" > "${QB_OUTPUT}"
else
sleep 10
exec s6-setuidgid abc /app/qbittorrent-nox --webui-port="${WEBUI_PORT}" > "${QB_OUTPUT}"
fi
exec \
s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost ${WEBUI_PORT}" \
s6-setuidgid abc /app/qbittorrent-nox --webui-port="${WEBUI_PORT}" > "${QB_OUTPUT}"