typo fixes

This commit is contained in:
AJ ONeal 2019-06-01 05:09:59 +00:00
parent 1cbe371e03
commit fcaf05d4da
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ set -x
sudo adduser --disabled-password --gecos "Git Site Deploys" --home "$my_repos" --no-create-home $my_user >/dev/null
sudo mkdir -p "$my_repos/.ssh" "$my_www"
sudo chmod 0700 "$my_repos/.ssh"
sudo ssh-keygen -t rsa -N "" -c "$my_user@$(hostname)" -f "$my_repos/.ssh/id_rsa"
sudo ssh-keygen -t rsa -N "" -C "$my_user@$(hostname)" -f "$my_repos/.ssh/id_rsa"
sudo install -m 0600 /dev/null "$my_repos/.ssh/authorized_keys"
sudo chown -R $my_user:$my_user "$my_repos" "$my_www"
set +x
@ -27,5 +27,5 @@ echo ""
echo ""
echo "To enable git deploys from this account you will need to add its public key to your git deployer:"
echo ""
cat "$my_repos/.ssh/id_rsa"
sudo cat "$my_repos/.ssh/id_rsa.pub"
echo ""