3 Commits

Author SHA1 Message Date
Alexandre
2d8e45b4eb Merge pull request #2466 from alexbelgium/codex/limit-interface-name-to-15-characters
Limit qBittorrent VPN interface names to 15 characters
2026-02-08 11:18:04 +01:00
Alexandre
2d4eaaa44c Remove interface name length restriction
Removed truncation of OpenVPN interface name if it exceeds 15 characters.
2026-02-08 11:16:24 +01:00
Alexandre
ed97320d8d Limit VPN interface names to 15 chars 2026-02-08 11:15:35 +01:00
5 changed files with 11 additions and 10 deletions

View File

@@ -61,6 +61,10 @@ interface_name="$(basename "${wireguard_config}" .conf)"
if [[ -z "${interface_name}" ]]; then
interface_name='wg0'
fi
if [[ ${#interface_name} -gt 15 ]]; then
bashio::log.warning "WireGuard interface name '${interface_name}' exceeds 15 characters; truncating to '${interface_name:0:15}'."
interface_name="${interface_name:0:15}"
fi
wireguard_runtime_config="${WIREGUARD_STATE_DIR}/${interface_name}.conf"

View File

@@ -1,8 +1,5 @@
- Added support for configuring extra environment variables via the `env_vars` add-on option alongside config.yaml. See https://github.com/alexbelgium/hassio-addons/wiki/Add-Environment-variables-to-your-Addon-2 for details.
## v1.23.2-1 (2026-02-08)
- Switch upstream to https://github.com/Starosdev/scrutiny
## v0.8.1-12 (2025-08-16)
- Replace s6-based shutdown with standard command to avoid s6-svwait error

View File

@@ -1,6 +1,6 @@
{
"build_from": {
"aarch64": "ghcr.io/starosdev/scrutiny:master-omnibus",
"amd64": "ghcr.io/starosdev/scrutiny:master-omnibus"
"aarch64": "ghcr.io/analogj/scrutiny:master-omnibus",
"amd64": "ghcr.io/analogj/scrutiny:master-omnibus"
}
}

View File

@@ -112,5 +112,5 @@ schema:
expose_collector: bool?
slug: scrutiny
udev: true
url: https://github.com/Starosdev/scrutiny
version: v1.23.2-1
url: https://github.com/AnalogJ/scrutiny
version: v0.8.1-12

View File

@@ -1,10 +1,10 @@
{
"github_fulltag": "true",
"last_update": "08-02-2026",
"last_update": "13-04-2024",
"paused": false,
"repository": "alexbelgium/hassio-addons",
"slug": "scrutiny",
"source": "github",
"upstream_repo": "Starosdev/scrutiny",
"upstream_version": "v1.23.2"
"upstream_repo": "analogj/scrutiny",
"upstream_version": "v0.8.1"
}