From: Przemysław Rudy Date: Mon, 22 Aug 2011 09:27:00 +0000 (+0200) Subject: luks key on ext dev - wait for luks X-Git-Tag: 014~124 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2e0c003435bbc0751cdf7466c0faebe7bfc7445b;p=thirdparty%2Fdracut.git luks key on ext dev - wait for luks This really waits for the luks mapper device, so luksOpen can do it job --- diff --git a/modules.d/90crypt/parse-crypt.sh b/modules.d/90crypt/parse-crypt.sh index ff8670055..1e78aa9b0 100755 --- a/modules.d/90crypt/parse-crypt.sh +++ b/modules.d/90crypt/parse-crypt.sh @@ -24,8 +24,22 @@ else printf -- '$env{DEVNAME} luks-$env{ID_FS_UUID} %s"\n' $tout } >> /etc/udev/rules.d/70-luks.rules.new - printf -- '[ -e /dev/disk/by-uuid/*%s* ]\n' $luksid \ - >> $hookdir/initqueue/finished/90-crypt.sh + + [ -e $hookdir/initqueue/finished/90-crypt.sh ] || \ + { + printf -- 'UUIDS=:\n' + printf -- 'for dm in /dev/dm-*; do\n' + printf -- '[ -e "$dm" ] || exit 1\n' + printf -- 'dmid=`/sbin/dmsetup info -c -o uuid --noheadings "$dm"`\n' + printf -- 'uuid=${dmid#CRYPT-LUKS*-}\n' + printf -- '[ "x$uuid" = "x$dmid" ] && continue\n' + printf -- 'UUIDS="${UUIDS}${uuid%%%%-*}:"\n' + printf -- 'done\n' + } > $hookdir/initqueue/finished/90-crypt.sh + uuid=$luksid + while [ "$uuid" != "${uuid#*-}" ]; do uuid=${uuid%%-*}${uuid#*-}; done + printf -- '[ "x${UUIDS#*:%s:}" != "x$UUIDS" ] || exit 1\n' $uuid >> $hookdir/initqueue/finished/90-crypt.sh + { printf -- '[ -e /dev/disk/by-uuid/*%s* ] || ' $luksid printf -- 'warn "crypto LUKS UUID "%s" not found"\n' $luksid