guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: services: ssh: Really rename openssh-challenge-re


From: guix-commits
Subject: branch master updated: services: ssh: Really rename openssh-challenge-response-authentication?
Date: Wed, 17 May 2023 22:31:31 -0400

This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5b700945fb services: ssh: Really rename 
openssh-challenge-response-authentication?
5b700945fb is described below

commit 5b700945fb0b33eec410de8979cae2fbf0d4f118
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed May 17 22:26:41 2023 -0400

    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?.
---
 gnu/services/ssh.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm
index 427a0c6ba3..303beed9ff 100644
--- a/gnu/services/ssh.scm
+++ b/gnu/services/ssh.scm
@@ -524,7 +524,8 @@ of user-name/file-like tuples."
            (format port "PidFile ~a\n"
                    #$(openssh-configuration-pid-file config))
            (format port "ChallengeResponseAuthentication ~a\n"
-                   #$(if (openssh-challenge-response-authentication? config)
+                   #$(if 
(openssh-configuration-challenge-response-authentication?
+                          config)
                          "yes" "no"))
            (format port "UsePAM ~a\n"
                    #$(if (openssh-configuration-use-pam? config)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]