Changes

From Amahi Wiki
Jump to: navigation, search
494 bytes removed ,  22:11, 8 July 2014
Transmission installs a cronjob that checks a preset folder every xx minutes for torrent files. If a torrent-file is present it will automatically start the download for you and delete the torrent file. In some cases you might receive email reports when the folder is empty. You can edit the cronjob to make sure no reports are sent when the cronjob is run.
* cronjob can be found here:at '''/etc/cron.d/amahi-transmission-watch'''
and it look like this:<pre> # watch for torrent files in the torrents directory */2 * * * * transmission transmission-remote localhost:9091 -a /var/hda/files/torrents/*.torrent && rm -f /var/hda/files/torrents/*.torrent</pre> add "Add '''>/dev/null 2>&1" ''' to the end of both commands all command lines and reports will not be prevented sent in the future, like this:<pre> # watch for torrent files in the torrents directory */2 * * * * transmission transmission-remote localhost:9091 -a /var/hda/files/torrents/*.torrent >/dev/null 2>&1 && rm -f /var/hda/files/torrents/*.torrent >/dev/null 2>&1</pre>
= Use Transmission with HTTPS Trackers (Ubuntu) =
12,424

edits