docker-alpine-ftp-server-tls/start_vsftpd.sh

57 lines
1.2 KiB
Bash
Raw Normal View History

2019-02-26 14:24:14 +00:00
#!/bin/sh
2018-06-16 14:50:45 +00:00
#Remove all ftp users
grep '/ftp/' /etc/passwd | cut -d':' -f1 | xargs -n1 deluser
#Create users
#USERS='name1|password1|[folder1][|uid1] name2|password2|[folder2][|uid2]'
#may be:
# user|password foo|bar|/home/foo
#OR
# user|password|/home/user/dir|10000
#OR
# user|password||10000
#Default user 'ftp' with password 'alpineftp'
if [ -z "$USERS" ]; then
USERS="ftp|alpineftp"
fi
for i in $USERS ; do
NAME=$(echo $i | cut -d'|' -f1)
PASS=$(echo $i | cut -d'|' -f2)
FOLDER=$(echo $i | cut -d'|' -f3)
UID=$(echo $i | cut -d'|' -f4)
if [ -z "$FOLDER" ]; then
FOLDER="/ftp/$NAME"
fi
if [ ! -z "$UID" ]; then
UID_OPT="-u $UID"
fi
echo -e "$PASS\n$PASS" | adduser -h $FOLDER -s /sbin/nologin $UID_OPT $NAME
mkdir -p $FOLDER
chown $NAME:$NAME $FOLDER
unset NAME PASS FOLDER UID
done
if [ -z "$MIN_PORT" ]; then
MIN_PORT=21000
fi
if [ -z "$MAX_PORT" ]; then
MAX_PORT=21010
fi
if [ ! -z "$ADDRESS" ]; then
ADDR_OPT="-opasv_address=$ADDRESS"
fi
/usr/sbin/vsftpd -opasv_min_port=$MIN_PORT -opasv_max_port=$MAX_PORT $ADDR_OPT /etc/vsftpd/vsftpd.conf
#vsFTPd does not support loggin to stdout, use tail instead
exec tail -F /var/log/vsftpd.log