vishalmishra434 / rpms / openssh

Forked from rpms/openssh a month ago
Clone
Petr Lautrbach c3c35d
diff -up openssh-6.4p1/contrib/ssh-copy-id.1.legacy-ssh-copy-id openssh-6.4p1/contrib/ssh-copy-id.1
Petr Lautrbach c3c35d
--- openssh-6.4p1/contrib/ssh-copy-id.1.legacy-ssh-copy-id	2013-03-22 00:17:37.000000000 +0100
Petr Lautrbach c3c35d
+++ openssh-6.4p1/contrib/ssh-copy-id.1	2014-01-28 17:12:49.197542425 +0100
Petr Lautrbach c3c35d
@@ -180,6 +180,19 @@ should prove enlightening (N.B. the mode
Petr Lautrbach c3c35d
 .Fl W
Petr Lautrbach c3c35d
 option, rather than
Petr Lautrbach c3c35d
 .Xr nc 1 ) .
Petr Lautrbach c3c35d
+.Sh ENVIRONMENT
Petr Lautrbach c3c35d
+.Bl -tag -width Ds
Petr Lautrbach c3c35d
+.Pp
Petr Lautrbach c3c35d
+.It Pa SSH_COPY_ID_LEGACY
Petr Lautrbach c3c35d
+If the 
Petr Lautrbach c3c35d
+.Cm SSH_COPY_ID_LEGACY
Petr Lautrbach c3c35d
+environment variable is set, the
Petr Lautrbach c3c35d
+.Nm
Petr Lautrbach c3c35d
+is run in a legacy mode. In this mode, the 
Petr Lautrbach c3c35d
+.Nm
Petr Lautrbach c3c35d
+doesn't check an existence of a private key and doesn't do remote checks
Petr Lautrbach c3c35d
+of the remote server versions or if public keys are already installed.
Petr Lautrbach c3c35d
+.El
Petr Lautrbach c3c35d
 .Sh "SEE ALSO"
Petr Lautrbach c3c35d
 .Xr ssh 1 ,
Petr Lautrbach c3c35d
 .Xr ssh-agent 1 ,
Petr Lautrbach c3c35d
diff -up openssh-6.4p1/contrib/ssh-copy-id.legacy-ssh-copy-id openssh-6.4p1/contrib/ssh-copy-id
Petr Lautrbach c3c35d
--- openssh-6.4p1/contrib/ssh-copy-id.legacy-ssh-copy-id	2013-06-05 14:48:45.000000000 +0200
Petr Lautrbach c3c35d
+++ openssh-6.4p1/contrib/ssh-copy-id	2014-01-28 17:11:51.538833032 +0100
Petr Lautrbach b898cb
@@ -77,7 +77,7 @@ use_id_file() {
Petr Lautrbach b898cb
     PUB_ID_FILE="$L_ID_FILE.pub"
Petr Lautrbach b898cb
   fi
Petr Lautrbach b898cb
 
Petr Lautrbach b898cb
-  PRIV_ID_FILE=$(dirname "$PUB_ID_FILE")/$(basename "$PUB_ID_FILE" .pub)
Petr Lautrbach b898cb
+  [ "x$SSH_COPY_ID_LEGACY" != "x" ] || PRIV_ID_FILE=$(dirname "$PUB_ID_FILE")/$(basename "$PUB_ID_FILE" .pub)
Petr Lautrbach b898cb
 
Petr Lautrbach b898cb
   # check that the files are readable
Petr Lautrbach b898cb
   for f in $PUB_ID_FILE $PRIV_ID_FILE ; do
Petr Lautrbach b898cb
@@ -243,7 +243,7 @@ populate_new_ids() {
Petr Lautrbach b898cb
   printf '%s: INFO: %d key(s) remain to be installed -- if you are prompted now it is to install the new keys\n' "$0" "$(printf '%s\n' "$NEW_IDS" | wc -l)" >&2
Petr Lautrbach b898cb
 }
Petr Lautrbach b898cb
 
Petr Lautrbach b898cb
-REMOTE_VERSION=$(ssh -v -o PreferredAuthentications=',' "$@" 2>&1 |
Petr Lautrbach b898cb
+[ "x$SSH_COPY_ID_LEGACY" != "x" ] || REMOTE_VERSION=$(ssh -v -o PreferredAuthentications=',' "$@" 2>&1 |
Petr Lautrbach b898cb
                  sed -ne 's/.*remote software version //p')
Petr Lautrbach b898cb
 
Petr Lautrbach b898cb
 case "$REMOTE_VERSION" in
Petr Lautrbach b898cb
@@ -268,7 +268,11 @@ case "$REMOTE_VERSION" in
Petr Lautrbach b898cb
     ;;
Petr Lautrbach b898cb
   *)
Petr Lautrbach b898cb
     # Assuming that the remote host treats ~/.ssh/authorized_keys as one might expect
Petr Lautrbach b898cb
-    populate_new_ids 0
Petr Lautrbach b898cb
+    if [ "x$SSH_COPY_ID_LEGACY" != "x" ]; then
Petr Lautrbach b898cb
+      NEW_IDS=`eval "$GET_ID"`
Petr Lautrbach b898cb
+    else
Petr Lautrbach b898cb
+      populate_new_ids 0
Petr Lautrbach b898cb
+    fi
Petr Lautrbach b898cb
     [ "$DRY_RUN" ] || printf '%s\n' "$NEW_IDS" | ssh "$@" "
Petr Lautrbach b898cb
 		umask 077 ;
Petr Lautrbach b898cb
 		mkdir -p .ssh && cat >> .ssh/authorized_keys || exit 1 ;