summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/ssh-copy-id4
-rw-r--r--debian/changelog7
2 files changed, 9 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
39fi 39fi
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
43cat <<EOF 43cat <<EOF
44Now try logging into the machine, with "ssh '$1'", and check in: 44Now try logging into the machine, with "ssh '${1%:}'", and check in:
45 45
46 .ssh/authorized_keys 46 .ssh/authorized_keys
47 47
diff --git a/debian/changelog b/debian/changelog
index df26dea13..fef4a2ce6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
1openssh (1:5.1p1-4) UNRELEASED; urgency=low
2
3 * ssh-copy-id: Strip trailing colons from hostname (closes: #226172,
4 LP: #249706; thanks to Karl Goetz for nudging this along).
5
6 -- Colin Watson <cjwatson@debian.org> Thu, 09 Oct 2008 12:52:34 +0100
7
1openssh (1:5.1p1-3) unstable; urgency=low 8openssh (1:5.1p1-3) unstable; urgency=low
2 9
3 * Remove unnecessary ssh-vulnkey output in non-verbose mode when no 10 * Remove unnecessary ssh-vulnkey output in non-verbose mode when no