vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / nixos-test-driver / busybox.nix
blob426f4494436e2f89cb671e37f07c47e04908dfe3
2   name = "Test that basic tests work when busybox is installed";
4   nodes = {
5     machine = ({ pkgs, ... }: {
6       environment.systemPackages = [
7         pkgs.busybox
8       ];
9     });
10   };
12   testScript = ''
13     start_all()
14     machine.wait_for_unit("multi-user.target")
15   '';