14 lines
204 B
Nix
14 lines
204 B
Nix
|
{}: {
|
||
|
name = "secondTest";
|
||
|
|
||
|
nodes.test-machine2 = {suites ? null, ...}: {
|
||
|
imports = [
|
||
|
suites.iso
|
||
|
];
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
machines[0].systemctl("is-system-running --wait")
|
||
|
'';
|
||
|
}
|