On Sun Feb 9 12:08:42 2014 Till Maas <opensource@xxxxxxxxx> wrote: > - Always use $luksname instead of sometimes $2 > - define $asked_file instead of using the same path twice > --- > modules.d/90crypt/cryptroot-ask.sh | 14 ++++++++------ > 1 file changed, 8 insertions(+), 6 deletions(-) > > diff --git a/modules.d/90crypt/cryptroot-ask.sh > b/modules.d/90crypt/cryptroot-ask.sh index 9665e48..1ab03bc 100755 > --- a/modules.d/90crypt/cryptroot-ask.sh > +++ b/modules.d/90crypt/cryptroot-ask.sh > @@ -8,19 +8,21 @@ NEWROOT=${NEWROOT:-"/sysroot"} > # do not ask, if we already have root > [ -f $NEWROOT/proc ] && exit 0 > > +# default luksname - luks-UUID > +luksname=$2 > + > # check if destination already exists > -[ -b /dev/mapper/$2 ] && exit 0 > +[ -b /dev/mapper/luksname ] && exit 0 Here is a typo. [ -b /dev/mapper/$luksname ] && exit 0 > > # we already asked for this device > -[ -f /tmp/cryptroot-asked-$2 ] && exit 0 > +asked_file=/tmp/cryptroot-asked-$luksname > +[ -f $asked_file ] && exit 0 > > # load dm_crypt if it is not already loaded > [ -d /sys/module/dm_crypt ] || modprobe dm_crypt > > . /lib/dracut-crypt-lib.sh > > -# default luksname - luks-UUID > -luksname=$2 > > # fallback to passphrase > ask_passphrase=1 > @@ -45,7 +47,7 @@ if [ -f /etc/crypttab ] && getargbool 1 > rd.luks.crypttab -d -n rd_NO_CRYPTTAB; t > # UUID used in crypttab > if [ "${dev%%=*}" = "UUID" ]; then > - if [ "luks-${dev##UUID=}" = "$2" ]; then > + if [ "luks-${dev##UUID=}" = "$luksname" ]; then > luksname="$name" > break > fi > @@ -157,7 +159,7 @@ fi > unset device luksname luksfile > > # mark device as asked > ->> /tmp/cryptroot-asked-$2 > +>> $asked_file > > need_shutdown > udevsettle > -- > 1.8.3.1 > > -- > To unsubscribe from this list: send the line "unsubscribe initramfs" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- Alexander Tsoy -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html