disko/tests/luks-lvm.nix

16 lines
416 B
Nix
Raw Normal View History

{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
}:
2022-08-25 23:12:49 +02:00
makeDiskoTest {
2022-10-29 13:19:29 +02:00
disko-config = ../example/luks-lvm.nix;
2022-08-25 23:12:49 +02:00
extraTestScript = ''
machine.succeed("cryptsetup isLuks /dev/vda2");
machine.succeed("mountpoint /home");
'';
enableOCR = true;
bootCommands = ''
machine.wait_for_text("[Pp]assphrase for")
machine.send_chars("secretsecret\n")
'';
}