homebrew-core/Formula/ssh-copy-id.rb
ilovezfs f3a371540b ssh-copy-id 7.4p1
Closes #8036.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2016-12-22 23:32:12 -08:00

21 lines
698 B
Ruby

class SshCopyId < Formula
desc "Add a public key to a remote machine's authorized_keys file"
homepage "https://www.openssh.com/"
url "https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.4p1.tar.gz"
mirror "https://www.mirrorservice.org/pub/OpenBSD/OpenSSH/portable/openssh-7.4p1.tar.gz"
version "7.4p1"
sha256 "1b1fc4a14e2024293181924ed24872e6f2e06293f3e8926a376b8aec481f19d1"
head "https://github.com/openssh/openssh-portable.git"
bottle :unneeded
def install
bin.install "contrib/ssh-copy-id"
man1.install "contrib/ssh-copy-id.1"
end
test do
output = shell_output("#{bin}/ssh-copy-id -h 2>&1", 1)
assert_match "identity_file", output
end
end