diff options
author | Harald Hoyer <harald@redhat.com> | 2010-08-02 11:36:05 +0200 |
---|---|---|
committer | Harald Hoyer <harald@redhat.com> | 2010-08-02 14:17:59 +0200 |
commit | aceaf13b44e45ea099f5e711f1cea90e94848fe7 (patch) | |
tree | a1f0a0c38eb562f7c357d3e2b4fc2475e3fb9c9e | |
parent | d7cc3f2ef521137b8b1f32fd45c57feb2c993efb (diff) | |
download | dracut-aceaf13b44e45ea099f5e711f1cea90e94848fe7.tar.gz dracut-aceaf13b44e45ea099f5e711f1cea90e94848fe7.tar.bz2 dracut-aceaf13b44e45ea099f5e711f1cea90e94848fe7.zip |
TEST-13-ENC-RAID-LVM: prepend "luks-" to rd_LUKS_UUID argument
-rwxr-xr-x | test/TEST-13-ENC-RAID-LVM/test.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/TEST-13-ENC-RAID-LVM/test.sh b/test/TEST-13-ENC-RAID-LVM/test.sh index cf96e455..f149f289 100755 --- a/test/TEST-13-ENC-RAID-LVM/test.sh +++ b/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)} # Uncomment this to debug failures -#DEBUGFAIL="rdshell" +#DEBUGFAIL="rdshell" # udev.log-priority=debug test_run() { LUKSARGS=$(cat luks.txt) @@ -89,7 +89,7 @@ test_setup() { cryptoUUIDS=$(grep --binary-files=text -m 3 ID_FS_UUID root.ext2) for uuid in $cryptoUUIDS; do eval $uuid - printf ' rd_LUKS_UUID=%s ' $ID_FS_UUID + printf ' rd_LUKS_UUID=luks-%s ' $ID_FS_UUID done > luks.txt |