rclone/fstest/testserver/init.d/TestFTPRclone
Nick Craig-Wood 45e8bea8d0 testserver: Make Test{FTP,SFTP,Webdav}Rclone run the current rclone
Before this change the tests were run against the previous stable
rclone/rclone docker image.

This unfortunately masked errors in the integration test server.

This change uses the currently installed rclone to run "rclone serve
ftp" etc. This is installed out of the current code by the integration
test server so will make a better test.
2020-11-10 18:01:15 +00:00

23 lines
388 B
Bash
Executable File

#!/bin/bash
set -e
NAME=rclone-serve-ftp
USER=rclone
PASS=FuddleIdlingJell5
IP=127.0.0.1
PORT=28622
start() {
run rclone serve ftp --user $USER --pass $PASS --addr ${IP}:${PORT} ${DATADIR}
echo type=ftp
echo host=${IP}
echo port=$PORT
echo user=$USER
echo pass=$(rclone obscure $PASS)
echo _connect=${IP}:${PORT}
}
. $(dirname "$0")/rclone-serve.bash