12 lines
158 B
Nix
12 lines
158 B
Nix
|
|
{
|
||
|
|
name = "simple";
|
||
|
|
|
||
|
|
nodes.machine = { };
|
||
|
|
|
||
|
|
testScript = ''
|
||
|
|
start_all()
|
||
|
|
machine.wait_for_unit("multi-user.target")
|
||
|
|
machine.shutdown()
|
||
|
|
'';
|
||
|
|
}
|