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

Collapse All | Expand All

(-)/usr/portage/sys-fs/cryptsetup/files/1.0.6-r2-dm-crypt-start.sh (-2 / +2 lines)
Lines 255-261 Link Here
255
	# Fix for baselayout-1.12.10 (bug 174256)
255
	# Fix for baselayout-1.12.10 (bug 174256)
256
	[ -z ${SVCNAME} ] && SVCNAME="${myservice}"
256
	[ -z ${SVCNAME} ] && SVCNAME="${myservice}"
257
257
258
	while read targetline ; do
258
	while read -u 4 targetline ; do
259
		# skip comments and blank lines
259
		# skip comments and blank lines
260
		[[ ${targetline}\# == \#* ]] && continue
260
		[[ ${targetline}\# == \#* ]] && continue
261
261
Lines 283-289 Link Here
283
283
284
		# Queue this setting for the next call to dm_crypt_execute_${SVCNAME}
284
		# Queue this setting for the next call to dm_crypt_execute_${SVCNAME}
285
		eval "${targetline}"
285
		eval "${targetline}"
286
	done < /etc/conf.d/dmcrypt
286
	done 4< /etc/conf.d/dmcrypt
287
287
288
	# If we have a target queued up, then execute it
288
	# If we have a target queued up, then execute it
289
	dm_crypt_execute_${SVCNAME}
289
	dm_crypt_execute_${SVCNAME}

Return to bug 257556