disko/tests/zfs.nix

11 lines
304 B
Nix
Raw Normal View History

{ pkgs ? (import <nixpkgs> { })
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
2022-08-25 16:08:26 +03:00
}:
2022-08-26 00:12:49 +03:00
makeDiskoTest {
2022-08-25 16:08:26 +03:00
disko-config = import ../example/zfs.nix;
2022-08-26 00:12:49 +03:00
extraTestScript = ''
2022-08-25 16:08:26 +03:00
machine.succeed("test -b /dev/zvol/zroot/zfs_testvolume");
machine.succeed("mountpoint /mnt/ext4onzfs");
2022-08-25 16:08:26 +03:00
'';
}