diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | contrib/ssh-copy-id | 2 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20011007 | ||
2 | - (bal) ssh-copy-id corrected permissions for .ssh/ and authorized_keys. | ||
3 | Prompted by Matthew Vernon <matthew@sel.cam.ac.uk> | ||
4 | |||
1 | 20011005 | 5 | 20011005 |
2 | - (bal) AES works under Cray, no more hack. | 6 | - (bal) AES works under Cray, no more hack. |
3 | 7 | ||
@@ -6638,4 +6642,4 @@ | |||
6638 | - Wrote replacements for strlcpy and mkdtemp | 6642 | - Wrote replacements for strlcpy and mkdtemp |
6639 | - Released 1.0pre1 | 6643 | - Released 1.0pre1 |
6640 | 6644 | ||
6641 | $Id: ChangeLog,v 1.1583 2001/10/06 00:08:09 mouring Exp $ | 6645 | $Id: ChangeLog,v 1.1584 2001/10/08 01:54:24 mouring Exp $ |
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 |
34 | fi | 34 | fi |
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 | ||
38 | cat <<EOF | 38 | cat <<EOF |
39 | Now try logging into the machine, with "ssh '$1'", and check in: | 39 | Now try logging into the machine, with "ssh '$1'", and check in: |