mirror of
https://github.com/luzifer-docker/sftp-share.git
synced 2024-11-09 19:50:02 +00:00
12 lines
245 B
Bash
12 lines
245 B
Bash
#!/bin/bash
|
|
|
|
ENC_PASS=$(perl -e 'print crypt($ARGV[0], "password")' ${PASS})
|
|
|
|
if ( id ${USER} ); then
|
|
echo "FATAL: User ${USER} already exists"
|
|
exit 1
|
|
fi
|
|
|
|
useradd -d /data -m -p ${ENC_PASS} -u 1000 -s /bin/false ${USER}
|
|
|
|
exec /usr/sbin/sshd
|