Issue 6: In destructive_mode, pause and delete Transmission torrents automatically
Status:  Fixed
Owner:
Closed:  Jan 2012
Project Member Reported by addicted...@gmail.com, Jul 24, 2011
The syntax is :
/usr/local/bin/transmission-remote localhost:PORT -n LOGIN:PASSWORD -t$TR_TORRENT_ID -S & 
Jan 1, 2012
Project Member #1 addicted...@gmail.com
Part 1 : Transmission

First we'll need to add these variables to the settings.ini file
torrent_client=transmission
transmission_login=
transmission_password=
transmission_port=

If torrent_client=transmission

We'll issue this command to know the ID  of the torrent

torrent_id=$(/usr/local/bin/transmission-remote localhost:"$transmission_port" -n "$transmission_login":"$transmission_password" -l | grep "$TR_TORRENT_NAME" | sed "s;^ \([0-9]*\)   .*;\1;")

We'll then pause then remove torrent and data

/usr/local/bin/transmission-remote localhost:"$transmission_port" -n "$transmission_login":"$transmission_password" -t "$torrent_id" -S > /dev/null 2>&1 && /usr/local/bin/transmission-remote localhost:"$transmission_port" -n "$transmission_login":"$transmission_password" -t "$torrent_id" --remove-and-delete > /dev/null 2>&1
Jan 4, 2012
Project Member #2 login...@gmail.com
Added in stable-5 CSI

# In destructive mode, torrents are deleted also from client torrent list. 
# These are client data, you may add login informations.
torrent_daemon_bin="/share/Apps/Transmission/bin/transmission-daemon"
torrent_daemon_login=""
torrent_daemon_password=""
torrent_daemon_port="9091"

Are correct?
Jan 4, 2012
Project Member #3 addicted...@gmail.com
Perfectly correct

Great job !
Jan 5, 2012
Project Member #4 login...@gmail.com
(No comment was entered for this change.)
Status: Fixed