]> andersk Git - openssh.git/commitdiff
- (djm) [contrib/ssh-copy-id.1 contrib/ssh-copy-id] bz#1492: Make
authordjm <djm>
Wed, 21 Jan 2009 09:29:20 +0000 (09:29 +0000)
committerdjm <djm>
Wed, 21 Jan 2009 09:29:20 +0000 (09:29 +0000)
   ssh-copy-id copy id_rsa.pub by default (instead of the legacy "identity"
   key). Patch from cjwatson AT debian.org

ChangeLog
contrib/ssh-copy-id
contrib/ssh-copy-id.1

index d96111e9a25a8845c34aea11bc7cada88b14e14d..25a2f5048fe9c307ac20f11195a2f0a1280e722e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
  - (djm) [channels.c] bz#1419: support "on demand" X11 forwarding via
    launchd on OS X; patch from vgiffin AT apple.com, slightly tweaked;
    ok dtucker@
+ - (djm) [contrib/ssh-copy-id.1 contrib/ssh-copy-id] bz#1492: Make
+   ssh-copy-id copy id_rsa.pub by default (instead of the legacy "identity"
+   key). Patch from cjwatson AT debian.org
 
 20090107
  - (tim) [configure.ac defines.h openbsd-compat/port-uw.c
index acd36d398721f6fec3668626f7112fc22d6b80e8..df74d25c8c0d3d5595da72551f5b9c7e5152c004 100644 (file)
@@ -1,11 +1,11 @@
 #!/bin/sh
 
-# Shell script to install your identity.pub on a remote machine
+# Shell script to install your public key on a remote machine
 # Takes the remote machine name as an argument.
 # Obviously, the remote machine must accept password authentication,
 # or one of the other keys in your ssh-agent, for this to work.
 
-ID_FILE="${HOME}/.ssh/identity.pub"
+ID_FILE="${HOME}/.ssh/id_rsa.pub"
 
 if [ "-i" = "$1" ]; then
   shift
index b331fa149e9e873530d683747e9c16277eaa449d..f25ed01f2a6e555db91400e16cac6e76a95ad517 100644 (file)
@@ -18,7 +18,7 @@ the original English.
 ..
 .TH SSH-COPY-ID 1 "14 November 1999" "OpenSSH"
 .SH NAME
-ssh-copy-id \- install your identity.pub in a remote machine's authorized_keys
+ssh-copy-id \- install your public key in a remote machine's authorized_keys
 .SH SYNOPSIS
 .B ssh-copy-id [-i [identity_file]]
 .I "[user@]machine"
@@ -42,7 +42,7 @@ set in its configuration).
 If the
 .B -i
 option is given then the identity file (defaults to
-.BR ~/.ssh/identity.pub )
+.BR ~/.ssh/id_rsa.pub )
 is used, regardless of whether there are any keys in your
 .BR ssh-agent .
 Otherwise, if this:
This page took 0.047764 seconds and 5 git commands to generate.