2023-07-07 10:58:13 +02:00
|
|
|
{
|
2023-07-18 15:08:31 +02:00
|
|
|
name = "Test that basic tests work when busybox is installed";
|
2023-07-07 10:58:13 +02:00
|
|
|
|
|
|
|
nodes = {
|
|
|
|
machine = ({ pkgs, ... }: {
|
|
|
|
environment.systemPackages = [
|
|
|
|
pkgs.busybox
|
|
|
|
];
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
start_all()
|
|
|
|
machine.wait_for_unit("multi-user.target")
|
|
|
|
'';
|
|
|
|
}
|