diff --git a/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html b/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html index 38d47d1f1..dc3dc12b3 100644 --- a/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html +++ b/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html @@ -1137,21 +1137,30 @@ pip3 install qbittorrent-api
Edit the script with your favorite editor (VSCode/Notepad++) you downloaded at the beginning of the guide HERE.
You only need to edit a few options in the script
# --DEFINE VARIABLES--#
-# Set Number of Days to stop torrents for the move
-days = 2
-qbt_host = '192.168.2.200:8080'
-qbt_user = 'admin'
-qbt_pass = 'adminadmin'
+# Set Number of Days to stop torrents between two offsets
+# days_from set to 0 will pause any torrents from todays date
+# days_to will be the upper limit of how far you want to pause torrents to
+days_from = 0
+days_to = 2
+qbt_host = "192.168.2.200:8080"
+qbt_user = None
+qbt_pass = None
# --DEFINE VARIABLES--#
days
=> Set Number of Days to stop torrents for the move.qbt_host
=> The URL you use to access qBittorrent locally. (the '
should remain)qbt_user
=> Your used qBittorrent User Name
if you have authentication enabled.qbt_pass
=> Your used qBittorrent Password
if you have authentication enabled.days_from
=> Set Number of Days to stop torrents from for the move.days_to
=> Set Number of Days to stop torrents to for the move.qbt_host
=> The URL you use to access qBittorrent locally. (the "
should remain)qbt_user
=> Your used qBittorrent User Name
if you have authentication enabled. Add '
either side.qbt_pass
=> Your used qBittorrent Password
if you have authentication enabled. Add '
either side.If you don't use the unRaid Mover Tuning
app, You might need to change line 54 from os.system('/usr/local/sbin/mover.old start')
to os.system('/usr/local/sbin/mover start')
Depending on whether you use the unRaid Mover Tuning
app, You might need to change line 68:
Mover Tuning
, change line 68 from os.system('/usr/local/sbin/mover.old start')
to os.system('/usr/local/sbin/mover start')
Mover Tuning
but don't want to use it for the script, do not change line 68Mover Tuning
and do want to use it for the script, change line 68 from os.system('/usr/local/sbin/mover.old start')
to os.system('/usr/local/sbin/mover start')
. For this option, inside the Mover Tuner
options you will also need to set Move Now button follows plugin filters
to Yes
and Disable Mover running on a schedule
to No
.Now it's time to place the script you just edited somewhere easy to access/remember.
@@ -1211,7 +1220,7 @@ pip3 install qbittorrent-api Last update: - September 15, 2022 19:18:58 + December 6, 2022 20:41:58