The procd script was not adding the wireguard interfaces. Add corner case
in the init script to allow meshing via wireguard.
Signed-off-by: Nick Hainke <vincent@systemli.org>
ifnames="$ifnames \"$IFNAME\""
ifsglobal="$ifsglobal $IFNAME"
fi
+ elif [[ "$(ip -details link show dev $interface)" == *"wireguard"* ]]; then
+ # wireguard interface
+ ifnames="$ifnames \"$interface\""
+ ifsglobal="$ifsglobal $interface"
else
log "$funcname() Warning: Interface '$interface' not found, skipped"
fi