diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-05-17 21:45:08 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-05-17 21:45:08 -0400 |
commit | 9c161c1f0def13676002ce34625ba023857b9ab2 (patch) | |
tree | 4234a116f436473c15557a27fd1827db3826f637 /gnu/services | |
parent | 760fadec15066354d3dea7f65b174e8d60eb6958 (diff) | |
download | guix-9c161c1f0def13676002ce34625ba023857b9ab2.tar.gz |
services: ssh: Rename openssh-challenge-response-authentication?
This is a follow-up commit to the preceding commit, which exported all <openssh-configuration> accessors. * gnu/services/ssh.scm (<openssh-configuration>): Rename openssh-challenge-response-authentication? to openssh-configuration-challenge-response-authentication?. It's a mouthful, but is at least consistent with the rest.
Diffstat (limited to 'gnu/services')
-rw-r--r-- | gnu/services/ssh.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm index 506ee96bd5..427a0c6ba3 100644 --- a/gnu/services/ssh.scm +++ b/gnu/services/ssh.scm @@ -59,7 +59,7 @@ openssh-configuration-allow-agent-forwarding? openssh-configuration-allow-tcp-forwarding? openssh-configuration-gateway-ports? - openssh-challenge-response-authentication? + openssh-configuration-challenge-response-authentication? openssh-configuration-use-pam? openssh-configuration-print-last-log? openssh-configuration-subsystems @@ -363,8 +363,10 @@ The other options should be self-descriptive." (default #f)) ;; Boolean - (challenge-response-authentication? openssh-challenge-response-authentication? - (default #f)) + (challenge-response-authentication? + openssh-configuration-challenge-response-authentication? + (default #f)) + ;; Boolean (use-pam? openssh-configuration-use-pam? (default #t)) |