From 9c161c1f0def13676002ce34625ba023857b9ab2 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Wed, 17 May 2023 21:45:08 -0400 Subject: services: ssh: Rename openssh-challenge-response-authentication? This is a follow-up commit to the preceding commit, which exported all accessors. * gnu/services/ssh.scm (): Rename openssh-challenge-response-authentication? to openssh-configuration-challenge-response-authentication?. It's a mouthful, but is at least consistent with the rest. --- gnu/services/ssh.scm | 8 +++++--- 1 file 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)) -- cgit v1.2.3