View | Details | Raw Unified | Return to bug 128823
Collapse All | Expand All

(-)sysconfig/scripts/network (-2 / +2 lines)
Lines 421-427 Link Here
421
					continue
421
					continue
422
				fi
422
				fi
423
				IFACE=`/sbin/getcfg-interface -- $D 2>/dev/null`
423
				IFACE=`/sbin/getcfg-interface -- $D 2>/dev/null`
424
				if [ $? != 0 ] ; then
424
				if [ $? != 0 -o ! -d /sys/class/net/$IFACE ] ; then
425
					MANDATORY_DEVICES="$MANDATORY_DEVICES $D"
425
					MANDATORY_DEVICES="$MANDATORY_DEVICES $D"
426
					continue	
426
					continue	
427
				fi
427
				fi
Lines 486-492 Link Here
486
			# Don't check the seperator
486
			# Don't check the seperator
487
			test "$D" = __NSC__ && continue
487
			test "$D" = __NSC__ && continue
488
			IFACE=`/sbin/getcfg-interface -- $D 2>/dev/null`
488
			IFACE=`/sbin/getcfg-interface -- $D 2>/dev/null`
489
			if [ $? = 0 ] ; then
489
			if [ $? = 0 -a -d /sys/class/net/$IFACE ] ; then
490
				TOCHECK_IFACES="$TOCHECK_IFACES $IFACE"
490
				TOCHECK_IFACES="$TOCHECK_IFACES $IFACE"
491
				continue			
491
				continue			
492
			fi
492
			fi

Return to bug 128823