mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 08:54:10 +01:00
24ef00a258
Test servers are implemented by docker containers and run real servers for rclone to test against.
18 lines
157 B
Bash
18 lines
157 B
Bash
#!/bin/bash
|
|
|
|
case "$1" in
|
|
start)
|
|
start
|
|
;;
|
|
stop)
|
|
stop
|
|
;;
|
|
status)
|
|
status
|
|
;;
|
|
*)
|
|
echo "usage: $0 start|stop|status" >&2
|
|
exit 1
|
|
;;
|
|
esac
|