What is the problem you are having with rclone?
rc sync/sync returns an empty array instead of list of copied files.
Run the command 'rclone version' and share the full output of the command.
rclone v1.62.2
- os/version: ubuntu 22.04 (64 bit)
- os/kernel: 5.15.0-71-generic (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.20.2
- go/linking: static
- go/tags: none
Which cloud storage system are you using? (eg Google Drive)
local test folders
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
rcd backend
rclone rcd --rc-user testu --rc-pass password --rc-web-gui --rc-web-gui-no-open-browser --rc-enable-metrics --rc-addr $IP:5572 &
rc sync
rclone rc sync/sync srcFs=/srv/backup/ dstFs=/srv/backup2/ --url=$IP:5572 --rc-user=testu --rc-pass=password --rc-enable-metrics --log-file /srv/rclone_logs/`date -I`.log --log-level INFO
Actual Output
{}
Expected output
2023/06/15 13:21:00 INFO : test3: Copied (new)
2023/06/15 13:21:00 INFO : test4: Copied (new)
2023/06/15 13:21:00 INFO : test: Copied (new)
2023/06/15 13:21:00 INFO : test5: Copied (new)
2023/06/15 13:21:00 INFO : test2: Copied (new)
2023/06/15 13:21:00 INFO : test1: Copied (new)
2023/06/15 13:21:00 INFO : test8: Copied (new)
2023/06/15 13:21:00 INFO : test7: Copied (new)
2023/06/15 13:21:00 INFO : test6: Copied (new)
2023/06/15 13:21:00 INFO : test9: Copied (new)
2023/06/15 13:21:00 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Transferred: 10 / 10, 100%
Elapsed time: 0.0s
Is it an expected behavior that rc sync/sync returns an empty JSON object instead of a list of actual transferred items?
I would need a list of what have been transferred but I can't get it to work like it works with rclone sync --log-level INFO. What am I missing here?