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

Fix chown commands on alpine for user names with a dot

This commit is contained in:
Thoralf Gutierrez 2017-05-22 17:53:22 +02:00
parent 06eafb8e1f
commit ad8a56789d

View file

@ -61,6 +61,10 @@ function createUser() {
chown root:root /home/$user
chmod 755 /home/$user
# Retrieving user id to use it in chown commands instead of the user name
# to avoid problems on alpine when the user name contains a '.'
uid=`id $user -u`
if [ -n "$pass" ]; then
echo "$user:$pass" | chpasswd $chpasswdOptions
else
@ -70,7 +74,7 @@ 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
chown $user /home/$user/.ssh/authorized_keys
chown $uid /home/$user/.ssh/authorized_keys
chmod 600 /home/$user/.ssh/authorized_keys
fi
@ -81,7 +85,7 @@ function createUser() {
dirPath=/home/$user/$dirPath
echo "Creating and/or setting permissions on $dirPath"
mkdir -p $dirPath
chown -R $user:users $dirPath
chown -R $uid:users $dirPath
done
fi
}