mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01: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-agent-forwarding?
|
||||||
openssh-configuration-allow-tcp-forwarding?
|
openssh-configuration-allow-tcp-forwarding?
|
||||||
openssh-configuration-gateway-ports?
|
openssh-configuration-gateway-ports?
|
||||||
openssh-challenge-response-authentication?
|
openssh-configuration-challenge-response-authentication?
|
||||||
openssh-configuration-use-pam?
|
openssh-configuration-use-pam?
|
||||||
openssh-configuration-print-last-log?
|
openssh-configuration-print-last-log?
|
||||||
openssh-configuration-subsystems
|
openssh-configuration-subsystems
|
||||||
|
@ -363,8 +363,10 @@ (define-record-type* <openssh-configuration>
|
||||||
(default #f))
|
(default #f))
|
||||||
|
|
||||||
;; Boolean
|
;; Boolean
|
||||||
(challenge-response-authentication? openssh-challenge-response-authentication?
|
(challenge-response-authentication?
|
||||||
|
openssh-configuration-challenge-response-authentication?
|
||||||
(default #f))
|
(default #f))
|
||||||
|
|
||||||
;; Boolean
|
;; Boolean
|
||||||
(use-pam? openssh-configuration-use-pam?
|
(use-pam? openssh-configuration-use-pam?
|
||||||
(default #t))
|
(default #t))
|
||||||
|
|
Loading…
Reference in a new issue