diff options
-rw-r--r-- | contrib/ssh-copy-id | 2 | ||||
-rw-r--r-- | debian/changelog | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id index 1555b5d37..84db5db51 100644 --- a/contrib/ssh-copy-id +++ b/contrib/ssh-copy-id | |||
@@ -19,7 +19,7 @@ if [ "-i" = "$1" ]; then | |||
19 | shift # and this should leave $1 as the target name | 19 | shift # and this should leave $1 as the target name |
20 | fi | 20 | fi |
21 | else | 21 | else |
22 | if [ x$SSH_AUTH_SOCK != x ] ; then | 22 | if [ x$SSH_AUTH_SOCK != x ] && ssh-add -L >/dev/null 2>&1; then |
23 | GET_ID="$GET_ID ssh-add -L" | 23 | GET_ID="$GET_ID ssh-add -L" |
24 | fi | 24 | fi |
25 | fi | 25 | fi |
diff --git a/debian/changelog b/debian/changelog index 63b80dbc5..77a063bca 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -2,6 +2,8 @@ openssh (1:4.6p1-5) UNRELEASED; urgency=low | |||
2 | 2 | ||
3 | * Identify ssh as a metapackage rather than a transitional package. It's | 3 | * Identify ssh as a metapackage rather than a transitional package. It's |
4 | still useful as a quick way to install both the client and the server. | 4 | still useful as a quick way to install both the client and the server. |
5 | * ssh-copy-id checks the exit status of ssh-add -L (thanks, Adeodato Simó; | ||
6 | closes: #221675). | ||
5 | * debconf template translations: | 7 | * debconf template translations: |
6 | - Update Catalan (thanks, Jordà Polo; closes: #431970). | 8 | - Update Catalan (thanks, Jordà Polo; closes: #431970). |
7 | 9 | ||