Displaying 2 results from an estimated 2 matches for "user_host".
2012 Feb 12
4
[Bug 1980] New: use updated ssh-copy-id
https://bugzilla.mindrot.org/show_bug.cgi?id=1980
Bug #: 1980
Summary: use updated ssh-copy-id
Classification: Unclassified
Product: Portable OpenSSH
Version: 5.9p1
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P2
Component: Miscellaneous
AssignedTo:
2016 May 30
1
[Bug 2575] New: ssh-copy-id fails when it can not find any key file in ~/.ssh
...ably not a good idea, because we can still use
ssh-agent keys (remains working).
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index bef5c95..f750e70 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -189,7 +189,8 @@ SSH_OPTS="${SSH_OPTS:+$SSH_OPTS }'$(quote
"$USER_HOST")'"
# and populate "$@" for later use (only way to get proper quoting of
options)
eval set -- "$SSH_OPTS"
-if [ -z "$(eval $GET_ID)" ] && [ -r
"${PUB_ID_FILE:=$DEFAULT_PUB_ID_FILE}" ] ; then
+if [ -z "$(eval $GET_ID)" ] &...