about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorlassulus <github@lassul.us>2024-04-12 21:53:55 +0200
committerGitHub <noreply@github.com>2024-04-12 21:53:55 +0200
commitad4c8244f1b1f98faae8e1059d38e501823b8253 (patch)
tree876c14c763d5e12d0c054c39a781c88015590b79 /nixos/tests
parent250886da9b8052118037eae3f7799d33a71174e3 (diff)
parent6ed0323361dbd5fe508f6687ea6d346f05fa88b8 (diff)
Merge pull request #278984 from birkb/drbd-kernel-module
drbd: 9.19.1 -> 9.27.0 (utils), 9.2.7 kernel driver added
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/drbd.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/drbd.nix b/nixos/tests/drbd.nix
index bede7206d706c..defbad6933932 100644
--- a/nixos/tests/drbd.nix
+++ b/nixos/tests/drbd.nix
@@ -31,11 +31,11 @@ import ./make-test-python.nix (
               }
 
               on drbd1 {
-                address ${nodes.drbd1.config.networking.primaryIPAddress}:${toString drbdPort};
+                address ${nodes.drbd1.networking.primaryIPAddress}:${toString drbdPort};
               }
 
               on drbd2 {
-                address ${nodes.drbd2.config.networking.primaryIPAddress}:${toString drbdPort};
+                address ${nodes.drbd2.networking.primaryIPAddress}:${toString drbdPort};
               }
             }
           '';
@@ -45,7 +45,7 @@ import ./make-test-python.nix (
   {
     name = "drbd";
     meta = with pkgs.lib.maintainers; {
-      maintainers = [ ryantm astro ];
+      maintainers = [ ryantm astro birkb ];
     };
 
     nodes.drbd1 = drbdConfig;