mirror of
https://github.com/nix-community/disko
synced 2024-11-13 23:57:12 +00:00
29 lines
820 B
Nix
29 lines
820 B
Nix
|
{ pkgs ? (import <nixpkgs> { })
|
||
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
||
|
}:
|
||
|
makeDiskoTest {
|
||
|
disko-config = ../example/complex.nix;
|
||
|
extraConfig = {
|
||
|
fileSystems."/zfs_legacy_fs".options = [ "nofail" ]; # TODO find out why we need this!
|
||
|
};
|
||
|
testMode = "module";
|
||
|
extraTestScript = ''
|
||
|
machine.succeed("test -b /dev/zroot/zfs_testvolume");
|
||
|
machine.succeed("test -b /dev/md/raid1p1");
|
||
|
|
||
|
|
||
|
machine.succeed("mountpoint /zfs_fs");
|
||
|
machine.succeed("mountpoint /zfs_legacy_fs");
|
||
|
machine.succeed("mountpoint /ext4onzfs");
|
||
|
machine.succeed("mountpoint /ext4_on_lvm");
|
||
|
'';
|
||
|
enableOCR = true;
|
||
|
bootCommands = ''
|
||
|
machine.wait_for_text("Passphrase for")
|
||
|
machine.send_chars("secret\n")
|
||
|
'';
|
||
|
extraConfig = {
|
||
|
boot.kernelModules = [ "dm-raid" "dm-mirror" ];
|
||
|
};
|
||
|
}
|