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