Merge "Ignore SR-IOV VFs on dhcp_all_interfaces list" into stable/rocky

This commit is contained in:
Zuul 2020-02-06 09:26:06 +00:00 committed by Gerrit Code Review
commit cded0f6d8b
1 changed files with 3 additions and 0 deletions

View File

@ -78,8 +78,11 @@ EOF_CAT
for iface in $(ls /sys/class/net | grep -v -e ^lo$ -e ^vnet$); do for iface in $(ls /sys/class/net | grep -v -e ^lo$ -e ^vnet$); do
local mac_addr_type="$(cat /sys/class/net/${iface}/addr_assign_type)" local mac_addr_type="$(cat /sys/class/net/${iface}/addr_assign_type)"
local vf_parent="/sys/class/net/${iface}/device/physfn"
if [ "$mac_addr_type" != "0" ]; then if [ "$mac_addr_type" != "0" ]; then
echo "Device has generated MAC, skipping." echo "Device has generated MAC, skipping."
elif [[ -d $vf_parent ]]; then
echo "Device (${iface}) is a SR-IOV VF, skipping."
else else
HAS_LINK="$(cat /sys/class/net/${iface}/carrier || echo 0)" HAS_LINK="$(cat /sys/class/net/${iface}/carrier || echo 0)"