mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Bypass for manual execution (#1788)
* no_status_check prevents additional checks. #1192 #1778
This commit is contained in:
parent
de81037d15
commit
bf05f1b4e7
6 changed files with 17 additions and 5 deletions
|
@ -12,6 +12,7 @@ def configure_nzbs(config):
|
|||
nzb_config = config['Nzb']
|
||||
core.NZB_CLIENT_AGENT = nzb_config['clientAgent'] # sabnzbd
|
||||
core.NZB_DEFAULT_DIRECTORY = nzb_config['default_downloadDirectory']
|
||||
core.NZB_NO_MANUAL = int(nzb_config['no_manual'], 0)
|
||||
|
||||
configure_sabnzbd(nzb_config)
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@ def configure_torrents(config):
|
|||
core.TORRENT_CLIENT_AGENT = torrent_config['clientAgent'] # utorrent | deluge | transmission | rtorrent | vuze | qbittorrent | synods | other
|
||||
core.OUTPUT_DIRECTORY = torrent_config['outputDirectory'] # /abs/path/to/complete/
|
||||
core.TORRENT_DEFAULT_DIRECTORY = torrent_config['default_downloadDirectory']
|
||||
core.TORRENT_NO_MANUAL = int(torrent_config['no_manual'], 0)
|
||||
|
||||
configure_torrent_linking(torrent_config)
|
||||
configure_flattening(torrent_config)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue