mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: openssh: Install ssh-copy-id.
* gnu/packages/ssh.scm (openssh)[arguments]: Install "ssh-copy-id" and documentation. Fixes <http://bugs.gnu.org/22024>. Reported by Florian Paul Schmidt <mista.tapas@gmx.net>.
This commit is contained in:
parent
a9ee11d5ab
commit
36f26211bb
1 changed files with 12 additions and 2 deletions
|
@ -145,9 +145,19 @@ (define-public openssh
|
||||||
(string-append pre post)))
|
(string-append pre post)))
|
||||||
#t))
|
#t))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
(lambda* (#:key outputs (make-flags '()) #:allow-other-keys)
|
||||||
;; install without host keys and system configuration files
|
;; install without host keys and system configuration files
|
||||||
(zero? (apply system* "make" "install-nosysconf" make-flags)))))))
|
(and (zero? (apply system* "make" "install-nosysconf" make-flags))
|
||||||
|
(begin
|
||||||
|
(install-file "contrib/ssh-copy-id"
|
||||||
|
(string-append (assoc-ref outputs "out")
|
||||||
|
"/bin/"))
|
||||||
|
(chmod (string-append (assoc-ref outputs "out")
|
||||||
|
"/bin/ssh-copy-id") #o555)
|
||||||
|
(install-file "contrib/ssh-copy-id.1"
|
||||||
|
(string-append (assoc-ref outputs "out")
|
||||||
|
"/share/man/man1/"))
|
||||||
|
#t)))))))
|
||||||
(synopsis "Client and server for the secure shell (ssh) protocol")
|
(synopsis "Client and server for the secure shell (ssh) protocol")
|
||||||
(description
|
(description
|
||||||
"The SSH2 protocol implemented in OpenSSH is standardised by the
|
"The SSH2 protocol implemented in OpenSSH is standardised by the
|
||||||
|
|
Loading…
Reference in a new issue