summaryrefslogtreecommitdiff
path: root/contrib/ssh-copy-id
diff options
context:
space:
mode:
authormouring <mouring>2001-10-08 01:54:24 +0000
committermouring <mouring>2001-10-08 01:54:24 +0000
commit1e0b8bdc067f1b3764ce93fc98cd7d59caa223fc (patch)
treeac4a7e79da5b20a9eee0aaf3642b5ef6fef16481 /contrib/ssh-copy-id
parent63b1efe61af831517a982a8f127bfd0887af1235 (diff)
downloadopenssh-1e0b8bdc067f1b3764ce93fc98cd7d59caa223fc.tar.gz
- (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
Prompted by Matthew Vernon <matthew@sel.cam.ac.uk>
Diffstat (limited to 'contrib/ssh-copy-id')
-rw-r--r--contrib/ssh-copy-id2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ssh-copy-id b/contrib/ssh-copy-id
index 0ab37cae..2346761f 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -33,7 +33,7 @@ if [ -z "`eval $GET_ID`" ]; then
exit 1
fi
-{ eval "$GET_ID" ; } | ssh $1 "test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys ; chmod g-w . .ssh .ssh/authorized_keys"
+{ eval "$GET_ID" ; } | ssh $1 "umask 077; test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys"
cat <<EOF
Now try logging into the machine, with "ssh '$1'", and check in: