services: ssh: Really rename openssh-challenge-response-authentication?
Fixes up 9c161c1f0d
, which renamed the accessor of <openssh-configuration> but
failed to adjust the single usage.
* gnu/services/ssh.scm (openssh-config-file): Rename
openssh-challenge-response-authentication? call to
openssh-configuration-challenge-response-authentication?.
master
parent
9c161c1f0d
commit
5b700945fb
|
@ -524,7 +524,8 @@ of user-name/file-like tuples."
|
||||||
(format port "PidFile ~a\n"
|
(format port "PidFile ~a\n"
|
||||||
#$(openssh-configuration-pid-file config))
|
#$(openssh-configuration-pid-file config))
|
||||||
(format port "ChallengeResponseAuthentication ~a\n"
|
(format port "ChallengeResponseAuthentication ~a\n"
|
||||||
#$(if (openssh-challenge-response-authentication? config)
|
#$(if (openssh-configuration-challenge-response-authentication?
|
||||||
|
config)
|
||||||
"yes" "no"))
|
"yes" "no"))
|
||||||
(format port "UsePAM ~a\n"
|
(format port "UsePAM ~a\n"
|
||||||
#$(if (openssh-configuration-use-pam? config)
|
#$(if (openssh-configuration-use-pam? config)
|
||||||
|
|
Reference in New Issue