Compare commits

...

5 Commits

Author SHA1 Message Date
github-actions
eefd1c8a26 GitHub bot: changelog 2026-01-23 10:08:05 +00:00
Alexandre
59e2c1aa0a Update qbittorrent version to 5.1.4-5 2026-01-23 11:02:01 +01:00
Alexandre
20ce63fe45 Merge pull request #2395 from litinoveweedle/fix_qbittorent_wireguard
Fix qbittorent wireguard init
2026-01-23 11:01:21 +01:00
litinoveweedle
f3f4d2ef81 Implement cleanup for temporary files in iptables-restore
Add cleanup function to remove temporary files on exit.
2026-01-22 23:09:08 +01:00
litinoveweedle
30e047c020 Add cleanup function to ip6tables-restore script 2026-01-22 23:08:09 +01:00
4 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
## 5.1.4-5 (23-01-2026)
- Minor bugs fixed
## 5.1.4-4 (2025-12-30)
- Allow WireGuard to continue when src_valid_mark sysctl cannot be set on read-only hosts

View File

@@ -144,4 +144,4 @@ schema:
slug: qbittorrent
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: 5.1.4-4
version: 5.1.4-5

View File

@@ -7,8 +7,10 @@ if [[ ! -x "${REAL_IP6TABLES_RESTORE}" ]]; then
fi
cleanup() {
local exit_code=$?
[[ -n "${RULES_FILE:-}" && -f "${RULES_FILE}" ]] && rm -f "${RULES_FILE}"
[[ -n "${SANITIZED_FILE:-}" && -f "${SANITIZED_FILE}" ]] && rm -f "${SANITIZED_FILE}"
return $exit_code
}
trap cleanup EXIT

View File

@@ -7,8 +7,10 @@ if [[ ! -x "${REAL_IPTABLES_RESTORE}" ]]; then
fi
cleanup() {
local exit_code=$?
[[ -n "${RULES_FILE:-}" && -f "${RULES_FILE}" ]] && rm -f "${RULES_FILE}"
[[ -n "${SANITIZED_FILE:-}" && -f "${SANITIZED_FILE}" ]] && rm -f "${SANITIZED_FILE}"
return $exit_code
}
trap cleanup EXIT