rclone/fstest/testserver/init.d/TestFTPPureftpd
Florian Klink aed77a8fb2 tree-wide: replace /bin/bash with /usr/bin/env bash
The latter is more portable, while the former only works on systems
where /bin/bash exists (or is symlinked appropriately).
2024-06-11 12:47:47 +01:00

30 lines
668 B
Bash
Executable File

#!/usr/bin/env bash
set -e
NAME=pureftpd
USER=rclone
PASS=AcridSpiesBooks2
. $(dirname "$0")/docker.bash
start() {
docker run --rm -d --name $NAME \
-e "FTP_USER_NAME=rclone" \
-e "FTP_USER_PASS=$PASS" \
-e "FTP_USER_HOME=/data" \
-e "FTP_MAX_CLIENTS=50" \
-e "FTP_MAX_CONNECTIONS=50" \
-e "FTP_PASSIVE_PORTS=30000:40000" \
stilliard/pure-ftpd
echo type=ftp
echo host=$(docker_ip)
echo user=$USER
echo pass=$(rclone obscure $PASS)
echo encoding=BackSlash,Ctl,Del,Dot,RightSpace,Slash,SquareBracket
echo _connect=$(docker_ip):21
}
. $(dirname "$0")/run.bash