set authorized_keys permissions
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Paolo Asperti 2025-03-28 15:04:48 +01:00
parent 84041f93b5
commit dcb8ec0f1e
Signed by: paspo
GPG Key ID: 06D46905D19D5182
2 changed files with 14 additions and 0 deletions

View File

@ -60,6 +60,13 @@ for keytype in ecdsa rsa ed25519 ; do
chmod 0600 "/ssh/ssh_host_${keytype}_key"
chmod 0644 "/ssh/ssh_host_${keytype}_key.pub"
done
# set authorized_keys permissions
if [ -f /ssh/authorized_keys ] ; then
chmod 0600 /ssh/authorized_keys
chown "${USERNAME}:${GROUPNAME}" /ssh/authorized_keys
fi
chmod 0700 "${WEBROOT}/.ssh"
/usr/sbin/sshd -e

View File

@ -70,6 +70,13 @@ for keytype in ecdsa rsa ed25519 ; do
chmod 0600 "/ssh/ssh_host_${keytype}_key"
chmod 0644 "/ssh/ssh_host_${keytype}_key.pub"
done
# set authorized_keys permissions
if [ -f /ssh/authorized_keys ] ; then
chmod 0600 /ssh/authorized_keys
chown "${USERNAME}:${GROUPNAME}" /ssh/authorized_keys
fi
chmod 0700 "${WEBROOT}/.ssh"
/usr/sbin/sshd -e