Solve issue with ssh-copy-id and keys without trailing newline (#1093168)

This commit is contained in:
Jakub Jelen 2015-02-25 10:45:30 +01:00
parent edabae2a71
commit 00050d05ad
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,13 @@
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index 4bba5d6..ed1208e 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -207,7 +207,7 @@ populate_new_ids() {
printf '%s: INFO: attempting to log in with the new key(s), to filter out any that are already installed\n' "$0" >&2
NEW_IDS=$(
eval $GET_ID | {
- while read ID ; do
+ while read ID || [[ -n $ID ]]; do
printf '%s\n' "$ID" > $L_TMP_ID_FILE
# the next line assumes $PRIV_ID_FILE only set if using a single id file - this

View File

@ -224,6 +224,8 @@ Patch919: openssh-6.6.1p1-scp-non-existing-directory.patch
Patch920: openssh-6.6.1p1-ip-port-config-parser.patch
# fix ssh-copy-id on non-sh shells (#1045191)
Patch921: openssh-6.7p1-fix-ssh-copy-id-on-non-sh-shell.patch
# Solve issue with ssh-copy-id and keys without trailing newline (#1093168)
Patch922: openssh-6.7p1-ssh-copy-id-truncated-keys.patch
License: BSD
Group: Applications/Internet
@ -438,6 +440,7 @@ popd
%patch920 -p1 -b .config
%patch802 -p1 -b .GSSAPIEnablek5users
%patch921 -p1 -b .ssh-copy-id
%patch922 -p1 -b .newline
%patch200 -p1 -b .audit
%patch201 -p1 -b .audit-fps