aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ssh-copy-id.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/ssh-copy-id.rb b/Library/Formula/ssh-copy-id.rb
index 54c268a17..9ab5cb2f6 100644
--- a/Library/Formula/ssh-copy-id.rb
+++ b/Library/Formula/ssh-copy-id.rb
@@ -11,4 +11,25 @@ class SshCopyId < Formula
bin.install 'contrib/ssh-copy-id'
man1.install 'contrib/ssh-copy-id.1'
end
+
+ def patches
+ # /bin/sh on the host (fixes an issue with fish shell)
+ # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=390344#10
+ DATA
+ end
end
+
+__END__
+diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
+index 9451ace..2e4e9ac 100644
+--- a/contrib/ssh-copy-id
++++ b/contrib/ssh-copy-id
+@@ -41,7 +41,7 @@ fi
+ # strip any trailing colon
+ host=`echo $1 | sed 's/:$//'`
+
+-{ eval "$GET_ID" ; } | ssh $host "umask 077; test -d ~/.ssh || mkdir ~/.ssh ; cat >> ~/.ssh/authorized_keys" || exit 1
++{ eval "$GET_ID" ; } | ssh $host "sh -c 'umask 077; test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys'" || exit 1
+
+ cat <<EOF
+ Now try logging into the machine, with "ssh '$host'", and check in: