From 10a433de3b18fa4024fed11b381b922131444a66 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Thu, 9 Oct 2008 11:55:33 +0000 Subject: ssh-copy-id: Strip trailing colons from hostname (closes: #226172, LP: #249706; thanks to Karl Goetz for nudging this along). --- contrib/ssh-copy-id | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib') diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id index 65c0a8cd8..2f757de4b 100644 --- a/contrib/ssh-copy-id +++ b/contrib/ssh-copy-id @@ -38,10 +38,10 @@ if [ "$#" -lt 1 ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then exit 1 fi -{ eval "$GET_ID" ; } | ssh $1 "umask 077; test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys" || exit 1 +{ eval "$GET_ID" ; } | ssh ${1%:} "umask 077; test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys" || exit 1 cat <