Fix permissions on .ssh directory.

Typo I think.. should be 700.

Change-Id: Iaafe68328b507caff46c9d2610a72541f19b0979
This commit is contained in:
Ian Main 2017-12-15 19:30:26 +00:00
parent ce4ac4d2c4
commit 5ada69131b
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ source $HOMEDIR/stackrc
if [ ! -f $HOMEDIR/.ssh/authorized_keys ]; then
sudo mkdir -p $HOMEDIR/.ssh
sudo chmod 7000 $HOMEDIR/.ssh/
sudo chmod 700 $HOMEDIR/.ssh/
sudo touch $HOMEDIR/.ssh/authorized_keys
sudo chmod 600 $HOMEDIR/.ssh/authorized_keys
fi