repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vuls: init at 0.27.0 (#348530)
[NixPkgs.git]
/
nixos
/
tests
/
nixos-test-driver
/
busybox.nix
blob
426f4494436e2f89cb671e37f07c47e04908dfe3
1
{
2
name = "Test that basic tests work when busybox is installed";
3
4
nodes = {
5
machine = ({ pkgs, ... }: {
6
environment.systemPackages = [
7
pkgs.busybox
8
];
9
});
10
};
11
12
testScript = ''
13
start_all()
14
machine.wait_for_unit("multi-user.target")
15
'';
16
}