summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Frank <git@danielfrank.net>2022-01-15 13:51:28 +0100
committerDaniel Frank <git@danielfrank.net>2022-01-18 13:58:33 +0100
commit11b2191b74c0a8b6bf30fc1136033321a2ea1b96 (patch)
tree721851447ad70abeb03c4fd0d83f10a8ff3e39b4
parent6d985ef1744ba2d2c3eacf269af52bd3eaf58f93 (diff)
downloadnixpkgs-11b2191b74c0a8b6bf30fc1136033321a2ea1b96.tar
nixpkgs-11b2191b74c0a8b6bf30fc1136033321a2ea1b96.tar.gz
nixpkgs-11b2191b74c0a8b6bf30fc1136033321a2ea1b96.tar.bz2
nixpkgs-11b2191b74c0a8b6bf30fc1136033321a2ea1b96.tar.lz
nixpkgs-11b2191b74c0a8b6bf30fc1136033321a2ea1b96.tar.xz
nixpkgs-11b2191b74c0a8b6bf30fc1136033321a2ea1b96.tar.zst
nixpkgs-11b2191b74c0a8b6bf30fc1136033321a2ea1b96.zip
openssh: Update tests to use new option name
-rw-r--r--nixos/tests/borgbackup.nix2
-rw-r--r--nixos/tests/btrbk.nix2
-rw-r--r--nixos/tests/google-oslogin/server.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/borgbackup.nix b/nixos/tests/borgbackup.nix
index cbb28689209..d3cd6c66bfe 100644
--- a/nixos/tests/borgbackup.nix
+++ b/nixos/tests/borgbackup.nix
@@ -106,7 +106,7 @@ in {
       services.openssh = {
         enable = true;
         passwordAuthentication = false;
-        challengeResponseAuthentication = false;
+        kbdInteractiveAuthentication = false;
       };
 
       services.borgbackup.repos.repo1 = {
diff --git a/nixos/tests/btrbk.nix b/nixos/tests/btrbk.nix
index 2689bb66c63..9f34f7dfbe3 100644
--- a/nixos/tests/btrbk.nix
+++ b/nixos/tests/btrbk.nix
@@ -53,7 +53,7 @@ import ./make-test-python.nix ({ pkgs, ... }:
         services.openssh = {
           enable = true;
           passwordAuthentication = false;
-          challengeResponseAuthentication = false;
+          kbdInteractiveAuthentication = false;
         };
         services.btrbk = {
           extraPackages = [ pkgs.lz4 ];
diff --git a/nixos/tests/google-oslogin/server.nix b/nixos/tests/google-oslogin/server.nix
index fdb7141da31..a0a3144ae69 100644
--- a/nixos/tests/google-oslogin/server.nix
+++ b/nixos/tests/google-oslogin/server.nix
@@ -17,7 +17,7 @@ in {
   };
 
   services.openssh.enable = true;
-  services.openssh.challengeResponseAuthentication = false;
+  services.openssh.kbdInteractiveAuthentication = false;
   services.openssh.passwordAuthentication = false;
 
   security.googleOsLogin.enable = true;