mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
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:
parent
760fadec15
commit
9c161c1f0d
1 changed files with 5 additions and 3 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue