Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 142850 | Differences between
and this patch

Collapse All | Expand All

(-)rc.old (-3 / +3 lines)
Lines 166-172 Link Here
166
			CRITICAL_SERVICES="${CRITICAL_SERVICES} ${x##*/}"
166
			CRITICAL_SERVICES="${CRITICAL_SERVICES} ${x##*/}"
167
		done
167
		done
168
	else
168
	else
169
		CRITICAL_SERVICES="checkroot modules checkfs localmount clock bootmisc"
169
		CRITICAL_SERVICES="clock checkroot modules checkfs localmount bootmisc"
170
	fi
170
	fi
171
171
172
	export CRITICAL_SERVICES
172
	export CRITICAL_SERVICES
Lines 444-450 Link Here
444
444
445
	# Start checkroot and modules before we load volumes
445
	# Start checkroot and modules before we load volumes
446
	export START_CRITICAL="yes"
446
	export START_CRITICAL="yes"
447
	for x in checkroot modules ; do
447
	for x in clock checkroot modules ; do
448
		[[ " ${CRITICAL_SERVICES} " != *" ${x} "* ]] && continue
448
		[[ " ${CRITICAL_SERVICES} " != *" ${x} "* ]] && continue
449
		start_critical_service "${x}"
449
		start_critical_service "${x}"
450
	done
450
	done
Lines 457-463 Link Here
457
	# We do not want to break compatibility, so we do not fully integrate
457
	# We do not want to break compatibility, so we do not fully integrate
458
	# these into /sbin/rc, but rather start them by hand ...
458
	# these into /sbin/rc, but rather start them by hand ...
459
	for x in ${CRITICAL_SERVICES} ; do
459
	for x in ${CRITICAL_SERVICES} ; do
460
		[[ ${x} == "checkroot" || ${x} == "modules" ]] && continue
460
		[[ ${x} == "clock" || ${x} == "checkroot" || ${x} == "modules" ]] && continue
461
		start_critical_service "${x}"
461
		start_critical_service "${x}"
462
	done
462
	done
463
463

Return to bug 142850