guix-devel
[Top][All Lists]
Advanced

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

[PATCH 2/2] services: openssh: remove deprecated 'RSAAuthentication' opt


From: Clément Lassieur
Subject: [PATCH 2/2] services: openssh: remove deprecated 'RSAAuthentication' option.
Date: Fri, 17 Feb 2017 17:37:08 +0100

* gnu/services/ssh.scm (openssh-config-file): Remove it.
  (<openssh-configuration>)[rsa-authentication?]: Remove it.
---
 gnu/services/ssh.scm | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/gnu/services/ssh.scm b/gnu/services/ssh.scm
index 7d6abcd33..876caf6d5 100644
--- a/gnu/services/ssh.scm
+++ b/gnu/services/ssh.scm
@@ -273,8 +273,6 @@ The other options should be self-descriptive."
                             (default #t))
   (public-key-authentication? openssh-configuration-public-key-authentication?
                               (default #t))                         ;Boolean
-  (rsa-authentication?   openssh-configuration-rsa-authentication?  ;Boolean
-                         (default #t))
   (x11-forwarding?       openssh-configuration-x11-forwarding? ;Boolean
                          (default #f))
   (protocol-number       openssh-configuration-protocol-number ;integer
@@ -331,9 +329,6 @@ The other options should be self-descriptive."
          (format port "PubkeyAuthentication ~a\n"
                  #$(if (openssh-configuration-public-key-authentication? 
config)
                        "yes" "no"))
-         (format port "RSAAuthentication ~a\n"
-                 #$(if (openssh-configuration-rsa-authentication? config)
-                       "yes" "no"))
          (format port "X11Forwarding ~a\n"
                  #$(if (openssh-configuration-x11-forwarding? config)
                        "yes" "no"))
-- 
2.11.1




reply via email to

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