summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-10-08 01:54:24 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-10-08 01:54:24 +0000
commitf16c81f900c361c32cee3a15b6c1802187114793 (patch)
treec4fe90c42950be5b10f61246cfa052c61823948b /contrib
parent4c90149c500f8cc7ad26a016ca3f67b586197b84 (diff)
- (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys.
Prompted by Matthew Vernon <matthew@sel.cam.ac.uk>
Diffstat (limited to 'contrib')
-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 0ab37cae4..2346761f7 100644
--- a/contrib/ssh-copy-id
+++ b/contrib/ssh-copy-id
@@ -33,7 +33,7 @@ if [ -z "`eval $GET_ID`" ]; then
33 exit 1 33 exit 1
34fi 34fi
35 35
36{ eval "$GET_ID" ; } | ssh $1 "test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys ; chmod g-w . .ssh .ssh/authorized_keys" 36{ eval "$GET_ID" ; } | ssh $1 "umask 077; test -d .ssh || mkdir .ssh ; cat >> .ssh/authorized_keys"
37 37
38cat <<EOF 38cat <<EOF
39Now try logging into the machine, with "ssh '$1'", and check in: 39Now try logging into the machine, with "ssh '$1'", and check in: