diff options
author | Colin Watson <cjwatson@debian.org> | 2008-10-09 11:55:33 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2008-10-09 11:55:33 +0000 |
commit | 10a433de3b18fa4024fed11b381b922131444a66 (patch) | |
tree | 9ac9c6b4c1ad688061a4067607220b76bf48a33e /contrib | |
parent | 666b6d373a52cea8176a8addbb10d1da60edbdc7 (diff) |
ssh-copy-id: Strip trailing colons from hostname (closes: #226172,
LP: #249706; thanks to Karl Goetz for nudging this along).
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ssh-copy-id | 4 |
1 files changed, 2 insertions, 2 deletions
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 | |||
38 | exit 1 | 38 | exit 1 |
39 | fi | 39 | fi |
40 | 40 | ||
41 | { eval "$GET_ID" ; } | ssh $1 "umask 077; test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys" || exit 1 | 41 | { eval "$GET_ID" ; } | ssh ${1%:} "umask 077; test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys" || exit 1 |
42 | 42 | ||
43 | cat <<EOF | 43 | cat <<EOF |
44 | Now try logging into the machine, with "ssh '$1'", and check in: | 44 | Now try logging into the machine, with "ssh '${1%:}'", and check in: |
45 | 45 | ||
46 | .ssh/authorized_keys | 46 | .ssh/authorized_keys |
47 | 47 | ||