mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 08:01:50 +00:00
nixos/tests/netboot: Fix evaluation error
Regression introduced by dfe608c8a2
.
The commit turns the two arguments into one attrset argument so we need
to adapt that to use the new calling convention.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
82475a9a7c
commit
e7d3166656
|
@ -64,11 +64,14 @@ in {
|
||||||
'';
|
'';
|
||||||
destination = "/boot.ipxe";
|
destination = "/boot.ipxe";
|
||||||
};
|
};
|
||||||
ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [
|
ipxeBootDir = pkgs.symlinkJoin {
|
||||||
config.system.build.netbootRamdisk
|
name = "ipxeBootDir";
|
||||||
config.system.build.kernel
|
paths = [
|
||||||
ipxeScriptDir
|
config.system.build.netbootRamdisk
|
||||||
];
|
config.system.build.kernel
|
||||||
|
ipxeScriptDir
|
||||||
|
];
|
||||||
|
};
|
||||||
in
|
in
|
||||||
makeTest {
|
makeTest {
|
||||||
name = "boot-netboot";
|
name = "boot-netboot";
|
||||||
|
@ -81,4 +84,4 @@ in {
|
||||||
$machine->shutdown;
|
$machine->shutdown;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue