Compare commits

...

6 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
Alexandre
4fbdb04282 nobuild 2026-02-08 10:36:15 +01:00
Alexandre
b16c94571b nobuild
[SignalK] Add I2C device mappings to SignalK AddOn configuration
2026-02-08 10:00:32 +01:00
eburi
3cc1cdb189 Add I2C device mappings to SignalK AddOn configuration 2026-02-07 19:35:09 -05:00
3 changed files with 9 additions and 1 deletions

View File

@@ -51,4 +51,4 @@ slug: netalertx_fa
tmpfs: true
udev: true
url: https://github.com/alexbelgium/hassio-addons
version: "26.2.6"
version: "26.1.17"

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

@@ -11,6 +11,10 @@ devices:
- /dev/ttyUSB1
- /dev/ttyACM0
- /dev/ttyACM1
- /dev/i2c-0
- /dev/i2c-1
- /dev/i2c-13
- /dev/i2c-14
environment:
HOME: /config
NMEA0183PORT: "10110"