Update permissions for SSH files and increment version number to 3.1.2

This commit is contained in:
Alejandro Lembke Barrientos 2024-04-24 22:17:32 +00:00
parent b33c4cbbe6
commit 183e04cde2
Signed by: aleleba
GPG Key ID: F48D7CDEB47942BD
2 changed files with 13 additions and 2 deletions

View File

@ -78,7 +78,18 @@ if [ "$HOME_USER" != "$(whoami)" ]; then
else
sudo chown -R ${HOME_USER} /home/${HOME_USER}
if [ -d "/home/${HOME_USER}/.ssh" ]; then
sudo chmod -R 600 /home/${HOME_USER}/.ssh
sudo chmod 755 /home/${HOME_USER}/.ssh
sudo chmod -R 600 /home/${HOME_USER}/.ssh/*
# Check if any .pub files exist in the .ssh directory
for file in /home/${HOME_USER}/.ssh/*.pub; do
if [ -f "$file" ]; then
sudo chmod 644 "$file"
fi
done
# Check if the known_hosts file exists in the .ssh directory
if [ -f "/home/${HOME_USER}/.ssh/known_hosts" ]; then
sudo chmod 644 /home/${HOME_USER}/.ssh/known_hosts
fi
fi
fi

View File

@ -1 +1 @@
3.1.1
3.1.2