Automated Setup - Torrents not being moved to Completed folder

General support for problems installing or using Deluge
Post Reply
Runberg
New User
New User
Posts: 1
Joined: Wed May 02, 2018 11:41 am

Automated Setup - Torrents not being moved to Completed folder

Post by Runberg »

Hi

I'm new to Deluge, but hope you will bare with me, and give me a few pushes in the right direction.

What I would like is that when a torrent is finish downloading it is being copied from /downloads to /completed (if needed extracted on the way), and once it is done seeding (according to preference) then deleted from Deluge and the /downloads folder.
Files will be removed from the /completed folder once synced to another device.
I have previously had a similar setup with "Download Station" on a Synology NAS, but have recently moved to a dedicated server.

Below more info about my setup, but here what I have tried so far:

Preferences -> Downloads
- Download to: /downloads
- Move Completed to: (YES) /completed

Preferences -> Queue
- Share Ratio Limit: 0 (temporarily in order to force completion of torrents)
- Share Time Ration: 0 (temporarily in order to force completion of torrents)
- Seed Time (m): 0 (temporarily in order to force completion of torrents)

Added plugins:
- CopyCompleted: folder set to /completed
- Extractor: folder set to /completed

- And yet with all these tries I still fail to get the downloaded torrents moved once done - and on top of that keep a copy for seeding. So I really hope someone can help and share his/her experience and setup.

My Setup
Ubuntu Server 18.04 "Bionic Beaver" LTS (64bits)
Deluge Docker Compose:

Code: Select all

  deluge:
    container_name: deluge
    image: linuxserver/deluge
    restart: always
    expose:
      - "58846"
      - "8112"
      - "53160"
      - "53160/udp"
    ports:
      - "58846:58846"
      - "8112:8112"
      - "58847:58847"
      - "58847:58847/udp"
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - ./data/deluge:/configs/config
      - ./data/deluge/downloads:/downloads
      - ./data/deluge/torrent:/torrents
      - ./data/deluge/completed:/completed
      
Post Reply