mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
a3e511d3c8
this is needed for zfs
15 lines
413 B
Nix
15 lines
413 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
disko-config = ../example/luks-lvm.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("cryptsetup isLuks /dev/vda2");
|
|
machine.succeed("mountpoint /home");
|
|
'';
|
|
enableOCR = true;
|
|
bootCommands = ''
|
|
machine.wait_for_text("Passphrase for")
|
|
machine.send_chars("secretsecret\n")
|
|
'';
|
|
}
|