http://bugzilla.novell.com/show_bug.cgi?id=572186 http://bugzilla.novell.com/show_bug.cgi?id=572186#c1 --- Comment #1 from Adrian Ban <adrian.ban@mantech.ro> 2010-01-20 11:37:27 UTC --- I make some researches and i got a fix for this: in function: get_vlan_iface_name() i've added a sanitycheck with etherdev: get_vlan_iface_name() { awk -v vid="$1" -v etherdev="$2" -- 'BEGIN{ nt=0; } /^Name-Type:/ { nt=1; next; } nt && $3 == vid && $5 == etherdev { print $1; }' \ /proc/net/vlan/config 2>/dev/null } and viface=`get_vlan_iface_name "$nr"` changed to viface=`get_vlan_iface_name "$nr" "$ETHERDEVICE"` I think this fix should be enough. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.