I have installed rTorrent on my 8.04 server; it's working perfect! Now I would like to fine-tune by using the .rtorrent.rc file. What I want is this:

  • Scan directory for new .torrent files
  • Download (partial completed) torrents to /home/user/downloads/incomplete
  • Once completed, the data must be moved to /home/user/downloads/complete and keeps seeding until 150%
  • When ratio of 150% is reached, remove torrent from rTorrent


I think this all is possible, but I can't manage to do this. Please have a look at my config file below. The 'watch'-dir. is working perfect. After copying a file into the directory, rTorrents starts downloading. But the automatic moving function does not work. What am I doing wrong?

Code:
# Default directory to save the downloaded torrents.
directory = /home/smeerbartje/downloads/incomplete

# Watch a directory for new torrents, and stop those that have been
# deleted.
schedule = watch_directory,5,5,load_start=/home/smeerbartje/downloads/torrent/*.torrent
schedule = untied_directory,5,5,stop_untied=      ??? what to put here ???

# Session directory
session = /home/smeerbartje/downloads/session

# Move completed torrents
on_finished = move_complete,"d.set_directory=/home/smeerbartje/downloads/incomplete/;execute=mv,-u,$d.get_base_path=,/home/smeerbartje/downloads/complete/"


# Stop torrents when reaching upload ratio in percent,
# when also reaching total upload in bytes, or when
# reaching final upload ratio in percent.
# example: stop at ratio 2.0 with at least 200 MB uploaded, or else ratio 20.0
schedule = ratio,60,60,"stop_on_ratio=200,200M,2000"