Tagged Questions
0
votes
1answer
84 views
A php script that I want it be run by Transmission client!
In transmission-gtk there is an option can run script: Edit > Preferences > Downloading > Call script when torrent is completed.
Recently, I found this script that I do not know how to make it work ...
0
votes
0answers
171 views
ln permission denied
So I've set up transmission (the torrent app) to run a script on my torrent to automagically move my torrents and create symlinks to them. This is the script:
#!/bin/bash
curl -d ...
1
vote
1answer
746 views
Transmission shutdown script for multiple torrents?
I have written a shutdown script for transmission. Transmission calls the script after a torrent download finishes. The script runs perfectly on my machine (Ubuntu 11.04 & 12.04).
#!/bin/bash
...
2
votes
4answers
2k views
Upstart script for a transmission-daemon executed as a normal user
I have done a script to start transmission-daemon as a normal user:
start on filesystem
stop on runlevel [!2345]
respawn
respawn limit 10 5
pre-start script
test -x /usr/bin/transmission-daemon ...
