mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
23 lines
530 B
Nix
23 lines
530 B
Nix
import ./make-test-python.nix ({ pkgs, ...} : {
|
|
name = "initrd-network";
|
|
|
|
meta.maintainers = [ pkgs.stdenv.lib.maintainers.eelco ];
|
|
|
|
machine = { ... }: {
|
|
imports = [ ../modules/profiles/minimal.nix ];
|
|
boot.initrd.network.enable = true;
|
|
boot.initrd.network.postCommands =
|
|
''
|
|
ip addr | grep 10.0.2.15 || exit 1
|
|
ping -c1 10.0.2.2 || exit 1
|
|
'';
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
start_all()
|
|
machine.wait_for_unit("multi-user.target")
|
|
machine.succeed("ip link >&2")
|
|
'';
|
|
})
|