0
0
Fork 0
mirror of https://github.com/atmoz/sftp.git synced 2025-03-09 15:16:00 -04:00
atmoz-sftp/run

40 lines
806 B
Text
Raw Normal View History

2014-10-07 21:34:24 +02:00
#!/bin/bash
2014-10-21 03:21:53 +02:00
for users in "$@"; do
# user:pass[:e][:[uid][:gid]]
IFS=':' read -a data <<< "$users"
2014-10-07 21:34:24 +02:00
user="${data[0]}"
pass="${data[1]}"
if [ "${data[2]}" == "e" ]; then
chpasswdParams="-e"
uid="${data[3]}"
gid="${data[4]}"
else
uid="${data[2]}"
gid="${data[3]}"
fi
useraddParams="-m -N"
if [ -n "$uid" ]; then
useraddParams="$useraddParams -o -u $uid"
fi
if [ -n "$gid" ]; then
useraddParams="$useraddParams -g $gid"
fi
useradd $useraddParams "$user"
2014-10-07 21:34:24 +02:00
chown root:root /home/$user
chmod 755 /home/$user
2014-10-21 03:21:53 +02:00
if [ -z "$pass" ]; then
pass="$(echo `</dev/urandom tr -dc A-Za-z0-9 | head -c256`)"
fi
echo "$user:$pass" | chpasswd $chpasswdParams
2014-10-07 21:34:24 +02:00
done
2014-10-21 03:21:53 +02:00
exec /usr/sbin/sshd -D