rclone/fstest/testserver/init.d/TestFTPProftpd
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

26 lines
476 B
Bash
Executable File

#!/usr/bin/env bash
set -e
NAME=proftpd
USER=rclone
PASS=RaidedBannedPokes5
. $(dirname "$0")/docker.bash
start() {
docker run --rm -d --name $NAME \
-e "FTP_USERNAME=rclone" \
-e "FTP_PASSWORD=$PASS" \
hauptmedia/proftpd
echo type=ftp
echo host=$(docker_ip)
echo user=$USER
echo pass=$(rclone obscure $PASS)
echo encoding=Asterisk,Ctl,Dot,Slash
echo _connect=$(docker_ip):21
}
. $(dirname "$0")/run.bash