summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJacek Galowicz <jacek@galowicz.de>2020-08-23 19:22:24 +0200
committerGitHub <noreply@github.com>2020-08-23 19:22:24 +0200
commit54cb0ed5cf8988f2d71a3964e65c4b81450f7735 (patch)
tree8e7219c846fe9732155ca0ad2585209235d7afc9 /nixos
parent09b6b045693372a5b89d0434344ad4dd632e742a (diff)
parent18e4838abf065b7f03f17262e052e13abdec4612 (diff)
downloadnixpkgs-54cb0ed5cf8988f2d71a3964e65c4b81450f7735.tar
nixpkgs-54cb0ed5cf8988f2d71a3964e65c4b81450f7735.tar.gz
nixpkgs-54cb0ed5cf8988f2d71a3964e65c4b81450f7735.tar.bz2
nixpkgs-54cb0ed5cf8988f2d71a3964e65c4b81450f7735.tar.lz
nixpkgs-54cb0ed5cf8988f2d71a3964e65c4b81450f7735.tar.xz
nixpkgs-54cb0ed5cf8988f2d71a3964e65c4b81450f7735.tar.zst
nixpkgs-54cb0ed5cf8988f2d71a3964e65c4b81450f7735.zip
Merge pull request #96070 from flokli/containers-reloadable-fixes
nixosTests.containers-reloadable: fixes
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/containers-reloadable.nix4
2 files changed, 3 insertions, 2 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index 346407f9938..fdfe2cfef29 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -66,6 +66,7 @@ in
   containers-macvlans = handleTest ./containers-macvlans.nix {};
   containers-physical_interfaces = handleTest ./containers-physical_interfaces.nix {};
   containers-portforward = handleTest ./containers-portforward.nix {};
+  containers-reloadable = handleTest ./containers-reloadable.nix {};
   containers-restart_networking = handleTest ./containers-restart_networking.nix {};
   containers-tmpfs = handleTest ./containers-tmpfs.nix {};
   convos = handleTest ./convos.nix {};
diff --git a/nixos/tests/containers-reloadable.nix b/nixos/tests/containers-reloadable.nix
index 35aff91e85b..2d81f163938 100644
--- a/nixos/tests/containers-reloadable.nix
+++ b/nixos/tests/containers-reloadable.nix
@@ -9,13 +9,13 @@ let
       };
     };
 
-    # prevent make-test.nix to change IP
+    # prevent make-test-python.nix to change IP
     networking.interfaces = {
       eth1.ipv4.addresses = lib.mkOverride 0 [ ];
     };
   };
 in {
-  name = "cotnainers-reloadable";
+  name = "containers-reloadable";
   meta = with pkgs.stdenv.lib.maintainers; {
     maintainers = [ danbst ];
   };