guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: openssh: Add PAM support in sshd.


From: Ludovic Courtès
Subject: 02/05: gnu: openssh: Add PAM support in sshd.
Date: Sun, 21 Aug 2016 22:30:11 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 39012aab3333868d5ab3b39c95682f95212437e2
Author: Ludovic Courtès <address@hidden>
Date:   Sun Aug 21 18:28:53 2016 +0200

    gnu: openssh: Add PAM support in sshd.
    
    * gnu/packages/ssh.scm (openssh)[inputs]: Add LINUX-PAM.
    [arguments]: Add "--with-pam" to #:configure-flags.
---
 gnu/packages/ssh.scm |    7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 88864dc..c6ff788 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -139,11 +139,16 @@ a server that supports the SSH-2 protocol.")
    (build-system gnu-build-system)
    (inputs `(("groff" ,groff)
              ("openssl" ,openssl)
+             ("pam" ,linux-pam)
              ("zlib" ,zlib)
              ("xauth" ,xauth)))                   ;for 'ssh -X' and 'ssh -Y'
    (arguments
     `(#:test-target "tests"
-      #:configure-flags '("--sysconfdir=/etc")
+      #:configure-flags '("--sysconfdir=/etc"
+
+                          ;; Enable PAM support in sshd.
+                          "--with-pam")
+
       #:phases
       (modify-phases %standard-phases
         (add-after 'configure 'reset-/var/empty



reply via email to

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