From: Hannes Reinecke <hare@xxxxxxx> DCB & fipvlan can only be called on real devices, not VLAN ones. So skip any VLAN devices which might been added to the list of network interfaces. References: bnc#878583 Signed-off-by: Hannes Reinecke <hare@xxxxxxx> Signed-off-by: Thomas Renninger <trenn@xxxxxxx> --- modules.d/95fcoe/fcoe-up.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules.d/95fcoe/fcoe-up.sh b/modules.d/95fcoe/fcoe-up.sh index b9d0411..7f6eb1b 100755 --- a/modules.d/95fcoe/fcoe-up.sh +++ b/modules.d/95fcoe/fcoe-up.sh @@ -16,6 +16,14 @@ type ip_to_var >/dev/null 2>&1 || . /lib/net-lib.sh netif=$1 dcb=$2 +iflink=$(cat /sys/class/net/$netif/iflink) +ifindex=$(cat /sys/class/net/$netif/ifindex) +if [ "$iflink" != "$ifindex" ] ; then + # Skip VLAN devices + exit 0 +fi + +ip link set dev $netif up linkup "$netif" netdriver=$(readlink -f /sys/class/net/$netif/device/driver) -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html