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:
aszlig 2016-05-03 22:05:11 +02:00
parent 82475a9a7c
commit e7d3166656
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -64,11 +64,14 @@ in {
'';
destination = "/boot.ipxe";
};
ipxeBootDir = pkgs.symlinkJoin "ipxeBootDir" [
config.system.build.netbootRamdisk
config.system.build.kernel
ipxeScriptDir
];
ipxeBootDir = pkgs.symlinkJoin {
name = "ipxeBootDir";
paths = [
config.system.build.netbootRamdisk
config.system.build.kernel
ipxeScriptDir
];
};
in
makeTest {
name = "boot-netboot";
@ -81,4 +84,4 @@ in {
$machine->shutdown;
'';
};
}
}