36 lines
662 B
Bash
Executable File
36 lines
662 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# do not ask, if we already have root
|
|
[ -f /sysroot/proc ] && exit 0
|
|
|
|
# check if destination already exists
|
|
[ -b /dev/mapper/$2 ] && exit 0
|
|
|
|
# we already asked for this device
|
|
[ -f /tmp/cryptroot-asked-$2 ] && exit 0
|
|
|
|
. /lib/dracut-lib.sh
|
|
LUKS=$(getargs rd_LUKS_UUID=)
|
|
ask=1
|
|
|
|
if [ -n "$LUKS" ]; then
|
|
ask=0
|
|
for luks in $LUKS; do
|
|
if [ "${2##$luks}" != "$2" ]; then
|
|
ask=1
|
|
fi
|
|
done
|
|
fi
|
|
|
|
if [ $ask -gt 0 ]; then
|
|
# flock against other interactive activities
|
|
{ flock -s 9;
|
|
echo -n "$1 is password protected "
|
|
/sbin/cryptsetup luksOpen -T1 $1 $2
|
|
} 9>/.console.lock
|
|
fi
|
|
|
|
# mark device as asked
|
|
>> /tmp/cryptroot-asked-$2
|
|
|
|
exit 0 |