udev: Add more logging to bridge hotplug script

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Michael Tremer
2020-02-14 13:48:18 +00:00
committed by Arne Fitzenreiter
parent 6f57c5e01f
commit 943eab6695

View File

@@ -72,6 +72,7 @@ ZONE=$(detect_zone)
# Cannot proceed if we could not find a zone
if [ -z "${ZONE}" ]; then
logger "Could not find a bridged zone for ${INTERFACE}"
exit 0
fi
@@ -93,6 +94,7 @@ case "${MODE}" in
fi
# Attach the physical device
logger "Attach ${INTERFACE} to ${BRIDGE}"
ip link set dev "${INTERFACE}" master "${BRIDGE}"
ip link set dev "${INTERFACE}" up
;;