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.
This commit is contained in:
Maxim Cournoyer 2023-05-17 21:45:08 -04:00
parent 760fadec15
commit 9c161c1f0d
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -59,7 +59,7 @@ (define-module (gnu services ssh)
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 @@ (define-record-type* <openssh-configuration>
(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))