mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Refactor torrent deletion configuration
This commit is contained in:
parent
521d2b7a05
commit
9a1be36e8b
1 changed files with 7 additions and 2 deletions
|
@ -505,20 +505,25 @@ def configure_torrent_permissions():
|
||||||
TORRENT_CHMOD_DIRECTORY = int(str(CFG['Torrent']['chmodDirectory']), 8)
|
TORRENT_CHMOD_DIRECTORY = int(str(CFG['Torrent']['chmodDirectory']), 8)
|
||||||
|
|
||||||
|
|
||||||
|
def configure_torrent_deltetion():
|
||||||
|
global DELETE_ORIGINAL
|
||||||
|
|
||||||
|
DELETE_ORIGINAL = int(CFG['Torrent']['deleteOriginal'])
|
||||||
|
|
||||||
|
|
||||||
def configure_torrents():
|
def configure_torrents():
|
||||||
global TORRENT_CLIENT_AGENT
|
global TORRENT_CLIENT_AGENT
|
||||||
global USE_LINK
|
global USE_LINK
|
||||||
global OUTPUT_DIRECTORY
|
global OUTPUT_DIRECTORY
|
||||||
global TORRENT_DEFAULT_DIRECTORY
|
global TORRENT_DEFAULT_DIRECTORY
|
||||||
global DELETE_ORIGINAL
|
|
||||||
|
|
||||||
TORRENT_CLIENT_AGENT = CFG['Torrent']['clientAgent'] # utorrent | deluge | transmission | rtorrent | vuze | qbittorrent |other
|
TORRENT_CLIENT_AGENT = CFG['Torrent']['clientAgent'] # utorrent | deluge | transmission | rtorrent | vuze | qbittorrent |other
|
||||||
USE_LINK = CFG['Torrent']['useLink'] # no | hard | sym
|
USE_LINK = CFG['Torrent']['useLink'] # no | hard | sym
|
||||||
OUTPUT_DIRECTORY = CFG['Torrent']['outputDirectory'] # /abs/path/to/complete/
|
OUTPUT_DIRECTORY = CFG['Torrent']['outputDirectory'] # /abs/path/to/complete/
|
||||||
TORRENT_DEFAULT_DIRECTORY = CFG['Torrent']['default_downloadDirectory']
|
TORRENT_DEFAULT_DIRECTORY = CFG['Torrent']['default_downloadDirectory']
|
||||||
configure_flattening()
|
configure_flattening()
|
||||||
|
configure_torrent_deltetion()
|
||||||
configure_torrent_categories()
|
configure_torrent_categories()
|
||||||
DELETE_ORIGINAL = int(CFG['Torrent']['deleteOriginal'])
|
|
||||||
configure_torrent_permissions()
|
configure_torrent_permissions()
|
||||||
configure_torrent_resuming()
|
configure_torrent_resuming()
|
||||||
configure_utorrent()
|
configure_utorrent()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue