0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2024-11-17 12:51:33 -05:00

Merge branch 'pieterlange-fix/concat-authorized_keys'

This commit is contained in:
Adrian Dvergsdal 2018-01-23 22:35:55 +01:00
commit 844bcb4409
No known key found for this signature in database
GPG key ID: C1E9E2D9552A42D2

View file

@ -88,7 +88,9 @@ function createUser() {
# Add SSH keys to authorized_keys with valid permissions
if [ -d /home/$user/.ssh/keys ]; then
cat /home/$user/.ssh/keys/* >> /home/$user/.ssh/authorized_keys
for publickey in /home/$user/.ssh/keys/*; do
cat $publickey >> /home/$user/.ssh/authorized_keys
done
chown $uid /home/$user/.ssh/authorized_keys
chmod 600 /home/$user/.ssh/authorized_keys
fi