diff options
Diffstat (limited to 'contrib/ssh-copy-id')
-rw-r--r-- | contrib/ssh-copy-id | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id index acd36d398..df74d25c8 100644 --- a/contrib/ssh-copy-id +++ b/contrib/ssh-copy-id | |||
@@ -1,11 +1,11 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | # Shell script to install your identity.pub on a remote machine | 3 | # Shell script to install your public key on a remote machine |
4 | # Takes the remote machine name as an argument. | 4 | # Takes the remote machine name as an argument. |
5 | # Obviously, the remote machine must accept password authentication, | 5 | # Obviously, the remote machine must accept password authentication, |
6 | # or one of the other keys in your ssh-agent, for this to work. | 6 | # or one of the other keys in your ssh-agent, for this to work. |
7 | 7 | ||
8 | ID_FILE="${HOME}/.ssh/identity.pub" | 8 | ID_FILE="${HOME}/.ssh/id_rsa.pub" |
9 | 9 | ||
10 | if [ "-i" = "$1" ]; then | 10 | if [ "-i" = "$1" ]; then |
11 | shift | 11 | shift |