Handle default value for get_iface_from_mac

This commit is contained in:
Frédéric Pierret (fepitre) 2019-05-18 10:42:13 +02:00
parent da162d7615
commit 902da9f837
No known key found for this signature in database
GPG Key ID: 484010B5CDC576E2

View File

@ -131,7 +131,9 @@ umount_retry() {
get_iface_from_mac() {
local mac="$1"
local iface
iface="$(ip -o link | grep -i "$mac" | awk '{print $2}' | cut -d ':' -f1)"
if [ "x$mac" != "x" ]; then
iface="$(ip -o link | grep -i "$mac" | awk '{print $2}' | cut -d ':' -f1)"
fi
echo "$iface"
}