Skip to content

Installing on headless server

Jeff VanOss edited this page Dec 21, 2016 · 5 revisions
  1. Install the deluge daemon
  2. build/download deluge-seedtime plugin
  3. Install manually
  4. Copy the plugin egg to the Deluge config plugins directory
  5. Configure seedtime manually
  6. create a seedtime.conf file in the deluge settings folder
  7. Copy the below into seedtime.conf. Add/Remove/Change the json objects in the filter_list to modify the filters when determining stop time. filter is a regular expression. field is either "tracker" or "label". "stop_time" is in days. "delay_time" is in seconds, its between when the torrent is added and when the seedtime checks the filters to apply the stop time.
{
  "file": 1, 
  "format": 1
}{
  "filter_list": [
    {
      "filter": "ubuntu", 
      "field": "tracker", 
      "stop_time": 3.0
    }, 
    {
      "filter": "tv", 
      "field": "label", 
      "stop_time": 0.05000000074505806
    }
  ],
  "remove_torrent": false,
  "default_stop_time": 7.0, 
  "delay_time": 60
}
Clone this wiki locally