Browse Source

TEST-13-ENC-RAID-LVM: prepend "luks-" to rd_LUKS_UUID argument

master
Harald Hoyer 15 years ago
parent
commit
aceaf13b44
  1. 4
      test/TEST-13-ENC-RAID-LVM/test.sh

4
test/TEST-13-ENC-RAID-LVM/test.sh

@ -4,7 +4,7 @@ TEST_DESCRIPTION="root filesystem on LVM on encrypted partitions of a RAID-5"
KVERSION=${KVERSION-$(uname -r)} KVERSION=${KVERSION-$(uname -r)}


# Uncomment this to debug failures # Uncomment this to debug failures
#DEBUGFAIL="rdshell" #DEBUGFAIL="rdshell" # udev.log-priority=debug


test_run() { test_run() {
LUKSARGS=$(cat luks.txt) LUKSARGS=$(cat luks.txt)
@ -89,7 +89,7 @@ test_setup() {
cryptoUUIDS=$(grep --binary-files=text -m 3 ID_FS_UUID root.ext2) cryptoUUIDS=$(grep --binary-files=text -m 3 ID_FS_UUID root.ext2)
for uuid in $cryptoUUIDS; do for uuid in $cryptoUUIDS; do
eval $uuid eval $uuid
printf ' rd_LUKS_UUID=%s ' $ID_FS_UUID printf ' rd_LUKS_UUID=luks-%s ' $ID_FS_UUID
done > luks.txt done > luks.txt



Loading…
Cancel
Save