ssh-copy-id

This commit is contained in:
Adam Vandenberg 2010-06-06 14:43:57 -07:00
parent a9c282dec5
commit 4a254d8d5c

13
Formula/ssh-copy-id.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class SshCopyId <Formula
url 'http://ftp.heanet.ie/pub/OpenBSD/OpenSSH/portable/openssh-5.5p1.tar.gz'
version '5.5p1'
homepage 'http://openssh.org/'
md5 '88633408f4cb1eb11ec7e2ec58b519eb'
def install
bin.install 'contrib/ssh-copy-id'
man1.install 'contrib/ssh-copy-id.1'
end
end