From: Till Maas Date: Sun, 9 Feb 2014 15:17:03 +0000 (+0100) Subject: Cryptroot-ask.sh: Remove duplicate code X-Git-Tag: 037~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9835859f213175bb77d8989889fd8983b413cab4;p=thirdparty%2Fdracut.git Cryptroot-ask.sh: Remove duplicate code Remove duplicate code introduced with commit 9b5e2e8574577cd4ec1e3645255060f749490537. --- diff --git a/modules.d/90crypt/cryptroot-ask.sh b/modules.d/90crypt/cryptroot-ask.sh index 1c3e792b0..2c8bba066 100755 --- a/modules.d/90crypt/cryptroot-ask.sh +++ b/modules.d/90crypt/cryptroot-ask.sh @@ -10,24 +10,6 @@ NEWROOT=${NEWROOT:-"/sysroot"} . /lib/dracut-lib.sh -# default luksname - luks-UUID -luksname=$2 - -# check if destination already exists -[ -b /dev/mapper/luksname ] && exit 0 - -# we already asked for this device -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 - -# fallback to passphrase -ask_passphrase=1 - # if device name is /dev/dm-X, convert to /dev/mapper/name if [ "${1##/dev/dm-}" != "$1" ]; then device="/dev/mapper/$(dmsetup info -c --noheadings -o name "$1")" @@ -73,7 +55,8 @@ fi [ -b /dev/mapper/$luksname ] && exit 0 # we already asked for this device -[ -f /tmp/cryptroot-asked-$luksname ] && 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