Page 1 of 1

deluge-console resume *

Posted: Tue Jul 09, 2019 7:14 pm
by slvrdragn
Hi There,
Using 2.0.3, this doesn't seem to be actually doing anything for me. It just returns.
Is there a log line that i could find to see if its actually trying to do the request?
Debug logging is on, this used to work for me in 1.3.15

Thanks!

Re: deluge-console resume *

Posted: Tue Jul 09, 2019 7:26 pm
by Paint
Try running the command with the exit command:

Code: Select all

deluge-console "resume *;exit"
I noticed I also have to include the exit when I recheck torrents:

Code: Select all

deluge-console "recheck *;exit"

Re: deluge-console resume *

Posted: Tue Jul 09, 2019 9:00 pm
by mhertz
The 'resume' and 'pause' etc commands needs quotes, atleast when globbing is used, so this works:

Code: Select all

deluge-console "pause *"

Code: Select all

deluge-console "resume *"
(When adding commands after 'deluge-console' then it always exits afterwards i.e. non-interactive-mode.)

Note, there's no output, but you can see by running 'deluge-console info' that e.g. 'pause *' makes downloads have a preceding 'P' instead of e.g. 'D'.

Re: deluge-console resume *

Posted: Wed Jul 10, 2019 6:44 pm
by slvrdragn
I'll give those a try. I was espeically surprised when doing "resume "*"" in the console mode didn't work.

Re: deluge-console resume *

Posted: Wed Jul 10, 2019 7:27 pm
by mhertz
I have tested the commands I posted to work ;)