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

(-) (-3 / +15 lines)
Line  Link Here
-- /etc/init.d/network
Lines 451-456 Link Here
451
while IFS=- read a b; do
451
while IFS=- read a b; do
452
	test -z "$b" && continue
452
	test -z "$b" && continue
453
	b=`type_filter $b`
453
	b=`type_filter $b`
454
	case $b in
455
		*~|*rpmnew|*rpmsave|lo)
456
			continue
457
		;;
458
		id-*|bus-*|devpath-*|interface-*|vpid-*|type-*)
459
			err_mesg "unconverted ifcfg-$b in old hwdesc/getcfg format, skiping"
460
			continue
461
		;;
462
	esac
454
	case "`get_iface_type_from_config $b`" in
463
	case "`get_iface_type_from_config $b`" in
455
		lo|eth|tr|wlan|irda|ip6tnl|mip6mnha)
464
		lo|eth|tr|wlan|irda|ip6tnl|mip6mnha)
456
			continue
465
			continue
Lines 528-535 Link Here
528
		test -z "$b" && continue
537
		test -z "$b" && continue
529
		case $b in
538
		case $b in
530
			*~|*rpmnew|*rpmsave|lo)
539
			*~|*rpmnew|*rpmsave|lo)
531
				continue;
540
				continue
532
				;;
541
			;;
542
			id-*|bus-*|devpath-*|interface-*|vpid-*|type-*)
543
				debug "unconverted ifcfg-$b in old hwdesc/getcfg format, skiping"
544
				continue
545
			;;
533
		esac
546
		esac
534
		case "`get_startmode $b`" in
547
		case "`get_startmode $b`" in
535
			on|boot|onboot|auto|ifplugd) : ;;
548
			on|boot|onboot|auto|ifplugd) : ;;

Return to bug 335486