mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 01:44:41 +01:00
10449c86a4
This allows using an external ssh binary instead of the built in ssh library for making SFTP connections. This makes another integration test target TestSFTPRcloneSSH: Fixes #7012
20 lines
355 B
Bash
Executable File
20 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# No password to make working with ssh binary easy
|
|
|
|
NAME=rclone-serve-sftp-ssh
|
|
IP=127.0.0.1
|
|
PORT=28623
|
|
|
|
start() {
|
|
run rclone serve sftp --addr ${IP}:${PORT} ${DATADIR}
|
|
|
|
echo type=sftp
|
|
echo ssh=ssh -o StrictHostKeyChecking=no -p ${PORT} user@${IP}
|
|
echo _connect=${IP}:${PORT}
|
|
}
|
|
|
|
. $(dirname "$0")/rclone-serve.bash
|