core: fix validate_bridge function (#14206)

This commit is contained in:
Michael Oultram
2026-05-03 21:35:53 +01:00
committed by GitHub
parent 6729fa2a87
commit 37eafa199d
+1 -1
View File
@@ -513,7 +513,7 @@ validate_bridge() {
[[ -z "$bridge" ]] && return 1
# Check if bridge interface exists
if ! ip link show "$bridge" &>/dev/null; then
if ! ip link show dev "$bridge" &>/dev/null; then
return 1
fi