mirror of
https://github.com/nix-community/disko.git
synced 2026-01-15 10:48:38 +01:00
14 lines
397 B
Nix
14 lines
397 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../src/disko_lib { }
|
|
,
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "luks-btrfs-raid";
|
|
disko-config = ../../example/luks-btrfs-raid.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("cryptsetup isLuks /dev/vda2");
|
|
machine.succeed("cryptsetup isLuks /dev/vdb1");
|
|
machine.succeed("btrfs subvolume list /");
|
|
'';
|
|
}
|