gnu: openssh: Add PAM support in sshd.
* gnu/packages/ssh.scm (openssh)[inputs]: Add LINUX-PAM. [arguments]: Add "--with-pam" to #:configure-flags.
This commit is contained in:
parent
d4b1977f83
commit
39012aab33
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue