mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
3fd324f823
Eelco has made several early contributions to NixOS including writing the samba module among other things, but is more or less inactive these days. By my brief inspection, he has not committed to the nixos/ tree since releasing Nix 2.13 in early 2023 and merging a PR to networking tests slightly before that. A lot of these tests/modules are actually unmaintained in practice, so we should update the code to reflect the practical reality so someone can consider picking them up.
33 lines
829 B
Nix
33 lines
829 B
Nix
import ./make-test-python.nix ({ pkgs, lib, ...} : {
|
|
name = "initrd-network";
|
|
|
|
meta.maintainers = [ ];
|
|
|
|
nodes.machine = { ... }: {
|
|
imports = [ ../modules/profiles/minimal.nix ];
|
|
boot.initrd.network.enable = true;
|
|
boot.initrd.network.postCommands =
|
|
''
|
|
ip addr show
|
|
ip route show
|
|
ip addr | grep 10.0.2.15 || exit 1
|
|
ping -c1 10.0.2.2 || exit 1
|
|
'';
|
|
# Check if cleanup was done correctly
|
|
boot.initrd.postMountCommands = lib.mkAfter
|
|
''
|
|
ip addr show
|
|
ip route show
|
|
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 addr show >&2")
|
|
machine.succeed("ip route show >&2")
|
|
'';
|
|
})
|