aethernal-agent 0.2.0 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/COPYING +674 -0
- data/Gemfile.lock +38 -33
- data/README.md +3 -32
- data/Vagrantfile +10 -2
- data/aethernal-agent.gemspec +4 -1
- data/bin/install-aa +121 -0
- data/bin/run-aa-for-test +1 -1
- data/exe/aa-cli +7 -0
- data/lib/aethernal_agent.rb +10 -0
- data/lib/aethernal_agent/apache/apache.rb +8 -5
- data/lib/aethernal_agent/apache/templates/aa-default.conf +2 -0
- data/lib/aethernal_agent/apache/templates/aa-user.conf.erb +2 -0
- data/lib/aethernal_agent/app.rb +82 -22
- data/lib/aethernal_agent/apt.rb +17 -6
- data/lib/aethernal_agent/cli/core.rb +11 -0
- data/lib/aethernal_agent/cli/services.rb +56 -0
- data/lib/aethernal_agent/docker/container_settings.rb +33 -0
- data/lib/aethernal_agent/docker/env.rb +33 -0
- data/lib/aethernal_agent/docker/port_binding.rb +32 -0
- data/lib/aethernal_agent/docker/volume.rb +28 -0
- data/lib/aethernal_agent/filesystem.rb +2 -1
- data/lib/aethernal_agent/loader.rb +3 -3
- data/lib/aethernal_agent/operation.rb +1 -1
- data/lib/aethernal_agent/plugins/bazarr/bazarr.rb +57 -0
- data/lib/aethernal_agent/plugins/bazarr/files/bazarr.service +16 -0
- data/lib/aethernal_agent/plugins/bazarr/manifest.yml +64 -0
- data/lib/aethernal_agent/plugins/bazarr/meta/bazarr.png +0 -0
- data/lib/aethernal_agent/plugins/bazarr/templates/bazarr.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/bazarr/templates/config.ini.erb +135 -0
- data/lib/aethernal_agent/plugins/cardigann/cardigann.rb +45 -0
- data/lib/aethernal_agent/plugins/cardigann/files/cardigann.service +13 -0
- data/lib/aethernal_agent/plugins/cardigann/manifest.yml +36 -0
- data/lib/aethernal_agent/plugins/cardigann/meta/cardigann.png +0 -0
- data/lib/aethernal_agent/plugins/cardigann/templates/cardigann.apache.conf.erb +6 -0
- data/lib/aethernal_agent/plugins/cardigann/templates/config.json.erb +7 -0
- data/lib/aethernal_agent/plugins/couchpotato/couchpotato.rb +45 -0
- data/lib/aethernal_agent/plugins/couchpotato/files/couchpotato.service +13 -0
- data/lib/aethernal_agent/plugins/couchpotato/manifest.yml +37 -0
- data/lib/aethernal_agent/plugins/couchpotato/meta/couchpotato.png +0 -0
- data/lib/aethernal_agent/plugins/couchpotato/templates/couchpotato.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/couchpotato/templates/settings.conf.erb +585 -0
- data/lib/aethernal_agent/plugins/deluge/deluge.rb +5 -0
- data/lib/aethernal_agent/plugins/deluge/manifest.yml +2 -2
- data/lib/aethernal_agent/plugins/deluge/templates/core.conf.erb +1 -1
- data/lib/aethernal_agent/plugins/deluge/templates/deluge-web.service.erb +1 -1
- data/lib/aethernal_agent/plugins/deluge/templates/deluge.apache.conf.erb +0 -1
- data/lib/aethernal_agent/plugins/deluge/templates/deluged.service.erb +1 -1
- data/lib/aethernal_agent/plugins/deluge/templates/ltconfig.conf.erb +21 -0
- data/lib/aethernal_agent/plugins/filebrowser/manifest.yml +1 -1
- data/lib/aethernal_agent/plugins/gitea/manifest.yml +1 -1
- data/lib/aethernal_agent/plugins/jackett/files/jackett.service +15 -0
- data/lib/aethernal_agent/plugins/jackett/jackett.rb +49 -0
- data/lib/aethernal_agent/plugins/jackett/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/jackett/meta/jackett.png +0 -0
- data/lib/aethernal_agent/plugins/jackett/templates/ServerConfig.json.erb +8 -0
- data/lib/aethernal_agent/plugins/jackett/templates/jackett.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/jdownloader/files/jdownloader.service +13 -0
- data/lib/aethernal_agent/plugins/jdownloader/jdownloader.rb +38 -0
- data/lib/aethernal_agent/plugins/jdownloader/manifest.yml +53 -0
- data/lib/aethernal_agent/plugins/jdownloader/meta/jdownloader.png +0 -0
- data/lib/aethernal_agent/plugins/jdownloader/templates/org.jdownloader.api.myjdownloader.MyJDownloaderSettings.json.erb +5 -0
- data/lib/aethernal_agent/plugins/medusa/files/medusa.service +13 -0
- data/lib/aethernal_agent/plugins/medusa/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/medusa/medusa.rb +47 -0
- data/lib/aethernal_agent/plugins/medusa/meta/medusa.png +0 -0
- data/lib/aethernal_agent/plugins/medusa/templates/config.ini.erb +1308 -0
- data/lib/aethernal_agent/plugins/medusa/templates/medusa.apache.conf.erb +12 -0
- data/lib/aethernal_agent/plugins/nextcloud/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/nextcloud/meta/nextcloud.png +0 -0
- data/lib/aethernal_agent/plugins/nextcloud/nextcloud.rb +44 -0
- data/lib/aethernal_agent/plugins/nextcloud/templates/nextcloud.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/nzbget/files/nzbget.service +13 -0
- data/lib/aethernal_agent/plugins/nzbget/manifest.yml +54 -0
- data/lib/aethernal_agent/plugins/nzbget/meta/nzbget.png +0 -0
- data/lib/aethernal_agent/plugins/nzbget/nzbget.rb +44 -0
- data/lib/aethernal_agent/plugins/nzbget/templates/nzbget.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/nzbget/templates/nzbget.conf.erb +1508 -0
- data/lib/aethernal_agent/plugins/olaris/manifest.yml +1 -1
- data/lib/aethernal_agent/plugins/ombi/manifest.yml +5 -2
- data/lib/aethernal_agent/plugins/ombi/ombi.rb +59 -22
- data/lib/aethernal_agent/plugins/ombi/templates/ombi.apache.conf.erb +3 -4
- data/lib/aethernal_agent/plugins/ombi/templates/ombi.service.erb +2 -2
- data/lib/aethernal_agent/plugins/plex-docker/manifest.yml +74 -0
- data/lib/aethernal_agent/plugins/plex-docker/meta/plex.png +0 -0
- data/lib/aethernal_agent/plugins/plex-docker/plex_docker.rb +39 -0
- data/lib/aethernal_agent/plugins/plex-docker/templates/Preferences.xml.erb +2 -0
- data/lib/aethernal_agent/plugins/plex-docker/templates/plex_docker.apache.conf.erb +21 -0
- data/lib/aethernal_agent/plugins/plex-docker/templates/plex_docker.service.erb +10 -0
- data/lib/aethernal_agent/plugins/plex/files/plex.service +1 -1
- data/lib/aethernal_agent/plugins/plex/manifest.yml +6 -5
- data/lib/aethernal_agent/plugins/plex/plex.rb +2 -4
- data/lib/aethernal_agent/plugins/plex/templates/Preferences.xml.erb +1 -1
- data/lib/aethernal_agent/plugins/plex/templates/plex.apache.conf.erb +21 -0
- data/lib/aethernal_agent/plugins/portainer/manifest.yml +50 -0
- data/lib/aethernal_agent/plugins/portainer/meta/portainer.png +0 -0
- data/lib/aethernal_agent/plugins/portainer/portainer.rb +38 -0
- data/lib/aethernal_agent/plugins/portainer/templates/portainer.apache.conf.erb +7 -0
- data/lib/aethernal_agent/plugins/portainer/templates/portainer.service.erb +10 -0
- data/lib/aethernal_agent/plugins/radarr/files/radarr.service +2 -2
- data/lib/aethernal_agent/plugins/radarr/manifest.yml +7 -13
- data/lib/aethernal_agent/plugins/radarr/radarr.rb +24 -18
- data/lib/aethernal_agent/plugins/radarr/templates/radarr.apache.conf.erb +3 -4
- data/lib/aethernal_agent/plugins/resilio_docker/manifest.yml +59 -0
- data/lib/aethernal_agent/plugins/resilio_docker/meta/resilio.png +0 -0
- data/lib/aethernal_agent/plugins/resilio_docker/resilio_docker.rb +29 -0
- data/lib/aethernal_agent/plugins/resilio_docker/templates/resilio_docker.apache.conf.erb +11 -0
- data/lib/aethernal_agent/plugins/resilio_docker/templates/resilio_docker.conf.erb +38 -0
- data/lib/aethernal_agent/plugins/resilio_docker/templates/resilio_docker.service.erb +10 -0
- data/lib/aethernal_agent/plugins/rutorrent/manifest.yml +84 -0
- data/lib/aethernal_agent/plugins/rutorrent/meta/rtorrent.png +0 -0
- data/lib/aethernal_agent/plugins/rutorrent/rutorrent.rb +41 -0
- data/lib/aethernal_agent/plugins/rutorrent/templates/rtorrent.rc.erb +69 -0
- data/lib/aethernal_agent/plugins/rutorrent/templates/rutorrent.apache.conf.erb +13 -0
- data/lib/aethernal_agent/plugins/rutorrent/templates/rutorrent.service.erb +10 -0
- data/lib/aethernal_agent/plugins/sabnzbd/files/sabnzbd.service +13 -0
- data/lib/aethernal_agent/plugins/sabnzbd/manifest.yml +43 -0
- data/lib/aethernal_agent/plugins/sabnzbd/meta/sabnzbd.png +0 -0
- data/lib/aethernal_agent/plugins/sabnzbd/sabnzbd.rb +47 -0
- data/lib/aethernal_agent/plugins/sabnzbd/templates/sabnzbd.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/sabnzbd/templates/sabnzbd.ini.erb +188 -0
- data/lib/aethernal_agent/plugins/sickchill/files/sickchill.service +13 -0
- data/lib/aethernal_agent/plugins/sickchill/manifest.yml +58 -0
- data/lib/aethernal_agent/plugins/sickchill/meta/sickchill.png +0 -0
- data/lib/aethernal_agent/plugins/sickchill/sickchill.rb +49 -0
- data/lib/aethernal_agent/plugins/sickchill/templates/config.ini.erb +1078 -0
- data/lib/aethernal_agent/plugins/sickchill/templates/sickchill.apache.conf.erb +4 -0
- data/lib/aethernal_agent/plugins/sonarr/files/sonarr.service +1 -1
- data/lib/aethernal_agent/plugins/sonarr/manifest.yml +3 -2
- data/lib/aethernal_agent/plugins/sonarr/templates/sonarr.apache.conf.erb +3 -4
- data/lib/aethernal_agent/plugins/syncthing/files/syncthing.service +18 -0
- data/lib/aethernal_agent/plugins/syncthing/manifest.yml +38 -0
- data/lib/aethernal_agent/plugins/syncthing/meta/syncthing.png +0 -0
- data/lib/aethernal_agent/plugins/syncthing/syncthing.rb +33 -0
- data/lib/aethernal_agent/plugins/syncthing/templates/config.xml.erb +56 -0
- data/lib/aethernal_agent/plugins/syncthing/templates/syncthing.apache.conf.erb +7 -0
- data/lib/aethernal_agent/plugins/tautulli/files/tautulli.service +13 -0
- data/lib/aethernal_agent/plugins/tautulli/manifest.yml +40 -0
- data/lib/aethernal_agent/plugins/tautulli/meta/tautulli.png +0 -0
- data/lib/aethernal_agent/plugins/tautulli/tautulli.rb +45 -0
- data/lib/aethernal_agent/plugins/tautulli/templates/config.ini.erb +222 -0
- data/lib/aethernal_agent/plugins/tautulli/templates/tautulli.apache.conf.erb +5 -0
- data/lib/aethernal_agent/plugins/vnc/manifest.yml +3 -2
- data/lib/aethernal_agent/systemd.rb +19 -13
- data/lib/aethernal_agent/utils.rb +85 -6
- data/lib/aethernal_agent/version.rb +1 -1
- data/lib/aethernal_agent/webserver/api.rb +1 -1
- data/lib/aethernal_agent/webserver/core.rb +1 -1
- metadata +154 -7
Binary file
|
@@ -0,0 +1,49 @@
|
|
1
|
+
class AethernalAgent::Sickchill < AethernalAgent::App
|
2
|
+
def initialize(options = {})
|
3
|
+
super(options)
|
4
|
+
end
|
5
|
+
|
6
|
+
def install_packages(options = {})
|
7
|
+
remove_app_user
|
8
|
+
super(options)
|
9
|
+
run_as('root',"mv #{app_path}/SickChill-2020.06.20-2/* #{app_path}/")
|
10
|
+
run_as('root',"pip install #{app_path}/requirements.txt")
|
11
|
+
directory(app_path, owner: @user)
|
12
|
+
directory(app_path('SickChill-2020.06.20-2'), action: :delete)
|
13
|
+
directory(app_path, owner: self.user)
|
14
|
+
end
|
15
|
+
|
16
|
+
def remove_app_user(options = {})
|
17
|
+
super(options) do |opts|
|
18
|
+
directory(app_path, action: :delete)
|
19
|
+
directory(sickchill_config_path, action: :delete)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def configure_app_user(options = {})
|
24
|
+
self.install_packages(options)
|
25
|
+
|
26
|
+
super(options) do |opts|
|
27
|
+
@vars = {
|
28
|
+
password: opts['password'],
|
29
|
+
port: opts['port'],
|
30
|
+
user: self.user}
|
31
|
+
|
32
|
+
write_template(template_path('config.ini.erb'),
|
33
|
+
sickchill_config_path('config.ini'),
|
34
|
+
@vars,
|
35
|
+
{owner: self.user})
|
36
|
+
|
37
|
+
file(sickchill_config_path('config.ini'), owner: self.user)
|
38
|
+
end
|
39
|
+
|
40
|
+
return create_return_args(@vars)
|
41
|
+
end
|
42
|
+
|
43
|
+
protected
|
44
|
+
|
45
|
+
def sickchill_config_path(path ="/")
|
46
|
+
File.join(home_folder_path(".config/sickchill"), path)
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
@@ -0,0 +1,1078 @@
|
|
1
|
+
[HORRIBLESUBS]
|
2
|
+
horriblesubs = 0
|
3
|
+
horriblesubs_ratio = ""
|
4
|
+
horriblesubs_minseed = 1
|
5
|
+
horriblesubs_minleech = 0
|
6
|
+
horriblesubs_search_mode = eponly
|
7
|
+
horriblesubs_search_fallback = 0
|
8
|
+
horriblesubs_enable_daily = 1
|
9
|
+
horriblesubs_enable_backlog = 1
|
10
|
+
horriblesubs_cookies = ""
|
11
|
+
[TORRENTPROJECT]
|
12
|
+
torrentproject = 0
|
13
|
+
torrentproject_custom_url = ""
|
14
|
+
torrentproject_ratio = ""
|
15
|
+
torrentproject_minseed = 1
|
16
|
+
torrentproject_minleech = 0
|
17
|
+
torrentproject_search_mode = eponly
|
18
|
+
torrentproject_search_fallback = 0
|
19
|
+
torrentproject_enable_daily = 0
|
20
|
+
torrentproject_enable_backlog = 1
|
21
|
+
torrentproject_cookies = ""
|
22
|
+
[SKYTORRENTS]
|
23
|
+
skytorrents = 0
|
24
|
+
skytorrents_custom_url = ""
|
25
|
+
skytorrents_ratio = ""
|
26
|
+
skytorrents_minseed = 1
|
27
|
+
skytorrents_minleech = 0
|
28
|
+
skytorrents_search_mode = eponly
|
29
|
+
skytorrents_search_fallback = 0
|
30
|
+
skytorrents_enable_daily = 1
|
31
|
+
skytorrents_enable_backlog = 1
|
32
|
+
skytorrents_cookies = ""
|
33
|
+
[HOUNDDAWGS]
|
34
|
+
hounddawgs = 0
|
35
|
+
hounddawgs_username = ""
|
36
|
+
hounddawgs_password = ""
|
37
|
+
hounddawgs_ranked = 1
|
38
|
+
hounddawgs_ratio = ""
|
39
|
+
hounddawgs_minseed = 1
|
40
|
+
hounddawgs_minleech = 0
|
41
|
+
hounddawgs_freeleech = 0
|
42
|
+
hounddawgs_search_mode = eponly
|
43
|
+
hounddawgs_search_fallback = 0
|
44
|
+
hounddawgs_enable_daily = 1
|
45
|
+
hounddawgs_enable_backlog = 1
|
46
|
+
hounddawgs_cookies = ""
|
47
|
+
[HDBITS]
|
48
|
+
hdbits = 0
|
49
|
+
hdbits_username = ""
|
50
|
+
hdbits_passkey = ""
|
51
|
+
hdbits_ratio = ""
|
52
|
+
hdbits_search_mode = eponly
|
53
|
+
hdbits_search_fallback = 0
|
54
|
+
hdbits_enable_daily = 1
|
55
|
+
hdbits_enable_backlog = 1
|
56
|
+
hdbits_cookies = ""
|
57
|
+
[ABNORMAL]
|
58
|
+
abnormal = 0
|
59
|
+
abnormal_username = ""
|
60
|
+
abnormal_password = ""
|
61
|
+
abnormal_ratio = ""
|
62
|
+
abnormal_minseed = 1
|
63
|
+
abnormal_minleech = 0
|
64
|
+
abnormal_search_mode = eponly
|
65
|
+
abnormal_search_fallback = 0
|
66
|
+
abnormal_enable_daily = 1
|
67
|
+
abnormal_enable_backlog = 1
|
68
|
+
abnormal_cookies = ""
|
69
|
+
[ALPHARATIO]
|
70
|
+
alpharatio = 0
|
71
|
+
alpharatio_username = ""
|
72
|
+
alpharatio_password = ""
|
73
|
+
alpharatio_ratio = ""
|
74
|
+
alpharatio_minseed = 1
|
75
|
+
alpharatio_minleech = 0
|
76
|
+
alpharatio_search_mode = eponly
|
77
|
+
alpharatio_search_fallback = 0
|
78
|
+
alpharatio_enable_daily = 1
|
79
|
+
alpharatio_enable_backlog = 1
|
80
|
+
alpharatio_cookies = ""
|
81
|
+
[SCENETIME]
|
82
|
+
scenetime = 0
|
83
|
+
scenetime_username = ""
|
84
|
+
scenetime_password = ""
|
85
|
+
scenetime_ratio = ""
|
86
|
+
scenetime_minseed = 1
|
87
|
+
scenetime_minleech = 0
|
88
|
+
scenetime_search_mode = eponly
|
89
|
+
scenetime_search_fallback = 0
|
90
|
+
scenetime_enable_daily = 1
|
91
|
+
scenetime_enable_backlog = 1
|
92
|
+
scenetime_cookies = ""
|
93
|
+
[EZTV]
|
94
|
+
eztv = 0
|
95
|
+
eztv_ratio = ""
|
96
|
+
eztv_minseed = 1
|
97
|
+
eztv_minleech = 0
|
98
|
+
eztv_search_mode = eponly
|
99
|
+
eztv_search_fallback = 0
|
100
|
+
eztv_enable_daily = 1
|
101
|
+
eztv_enable_backlog = 1
|
102
|
+
eztv_cookies = ""
|
103
|
+
[GFTRACKER]
|
104
|
+
gftracker = 0
|
105
|
+
gftracker_username = ""
|
106
|
+
gftracker_password = ""
|
107
|
+
gftracker_ratio = ""
|
108
|
+
gftracker_minseed = 1
|
109
|
+
gftracker_minleech = 0
|
110
|
+
gftracker_search_mode = eponly
|
111
|
+
gftracker_search_fallback = 0
|
112
|
+
gftracker_enable_daily = 1
|
113
|
+
gftracker_enable_backlog = 1
|
114
|
+
gftracker_cookies = ""
|
115
|
+
[RARBG]
|
116
|
+
rarbg = 0
|
117
|
+
rarbg_ranked = 1
|
118
|
+
rarbg_sorting = seeders
|
119
|
+
rarbg_ratio = ""
|
120
|
+
rarbg_minseed = 1
|
121
|
+
rarbg_minleech = 0
|
122
|
+
rarbg_search_mode = eponly
|
123
|
+
rarbg_search_fallback = 0
|
124
|
+
rarbg_enable_daily = 1
|
125
|
+
rarbg_enable_backlog = 1
|
126
|
+
rarbg_cookies = ""
|
127
|
+
[HDSPACE]
|
128
|
+
hdspace = 0
|
129
|
+
hdspace_username = ""
|
130
|
+
hdspace_password = ""
|
131
|
+
hdspace_ratio = ""
|
132
|
+
hdspace_minseed = 1
|
133
|
+
hdspace_minleech = 0
|
134
|
+
hdspace_search_mode = eponly
|
135
|
+
hdspace_search_fallback = 0
|
136
|
+
hdspace_enable_daily = 1
|
137
|
+
hdspace_enable_backlog = 1
|
138
|
+
hdspace_cookies = ""
|
139
|
+
[BTN]
|
140
|
+
btn = 0
|
141
|
+
btn_api_key = ""
|
142
|
+
btn_ratio = ""
|
143
|
+
btn_search_mode = eponly
|
144
|
+
btn_search_fallback = 0
|
145
|
+
btn_enable_daily = 1
|
146
|
+
btn_enable_backlog = 1
|
147
|
+
btn_cookies = ""
|
148
|
+
[ELITETORRENT]
|
149
|
+
elitetorrent = 0
|
150
|
+
elitetorrent_onlyspasearch = 0
|
151
|
+
elitetorrent_ratio = ""
|
152
|
+
elitetorrent_minseed = 1
|
153
|
+
elitetorrent_minleech = 0
|
154
|
+
elitetorrent_search_mode = eponly
|
155
|
+
elitetorrent_search_fallback = 0
|
156
|
+
elitetorrent_enable_daily = 1
|
157
|
+
elitetorrent_enable_backlog = 1
|
158
|
+
elitetorrent_cookies = ""
|
159
|
+
[CPASBIEN]
|
160
|
+
cpasbien = 0
|
161
|
+
cpasbien_ratio = ""
|
162
|
+
cpasbien_minseed = 1
|
163
|
+
cpasbien_minleech = 0
|
164
|
+
cpasbien_search_mode = eponly
|
165
|
+
cpasbien_search_fallback = 0
|
166
|
+
cpasbien_enable_daily = 0
|
167
|
+
cpasbien_enable_backlog = 1
|
168
|
+
cpasbien_cookies = ""
|
169
|
+
[TNTVILLAGE]
|
170
|
+
tntvillage = 0
|
171
|
+
tntvillage_username = ""
|
172
|
+
tntvillage_password = ""
|
173
|
+
tntvillage_engrelease = 0
|
174
|
+
tntvillage_ratio = ""
|
175
|
+
tntvillage_minseed = 1
|
176
|
+
tntvillage_minleech = 0
|
177
|
+
tntvillage_search_mode = eponly
|
178
|
+
tntvillage_search_fallback = 0
|
179
|
+
tntvillage_enable_daily = 1
|
180
|
+
tntvillage_enable_backlog = 1
|
181
|
+
tntvillage_cat = 0
|
182
|
+
tntvillage_subtitle = 0
|
183
|
+
tntvillage_cookies = ""
|
184
|
+
[XTHOR]
|
185
|
+
xthor = 0
|
186
|
+
xthor_api_key = ""
|
187
|
+
xthor_ratio = ""
|
188
|
+
xthor_freeleech = 0
|
189
|
+
xthor_search_mode = eponly
|
190
|
+
xthor_search_fallback = 0
|
191
|
+
xthor_enable_daily = 1
|
192
|
+
xthor_enable_backlog = 1
|
193
|
+
xthor_cookies = ""
|
194
|
+
[SHAZBAT_TV]
|
195
|
+
shazbat_tv = 0
|
196
|
+
shazbat_tv_passkey = ""
|
197
|
+
shazbat_tv_ratio = ""
|
198
|
+
shazbat_tv_options = ""
|
199
|
+
shazbat_tv_search_mode = eponly
|
200
|
+
shazbat_tv_search_fallback = 0
|
201
|
+
shazbat_tv_enable_daily = 1
|
202
|
+
shazbat_tv_enable_backlog = 0
|
203
|
+
shazbat_tv_cookies = ""
|
204
|
+
[LIMETORRENTS]
|
205
|
+
limetorrents = 0
|
206
|
+
limetorrents_ratio = ""
|
207
|
+
limetorrents_minseed = 1
|
208
|
+
limetorrents_minleech = 0
|
209
|
+
limetorrents_search_mode = eponly
|
210
|
+
limetorrents_search_fallback = 0
|
211
|
+
limetorrents_enable_daily = 1
|
212
|
+
limetorrents_enable_backlog = 1
|
213
|
+
limetorrents_cookies = ""
|
214
|
+
[TORRENTBYTES]
|
215
|
+
torrentbytes = 0
|
216
|
+
torrentbytes_username = ""
|
217
|
+
torrentbytes_password = ""
|
218
|
+
torrentbytes_ratio = ""
|
219
|
+
torrentbytes_minseed = 1
|
220
|
+
torrentbytes_minleech = 0
|
221
|
+
torrentbytes_freeleech = 0
|
222
|
+
torrentbytes_search_mode = eponly
|
223
|
+
torrentbytes_search_fallback = 0
|
224
|
+
torrentbytes_enable_daily = 1
|
225
|
+
torrentbytes_enable_backlog = 1
|
226
|
+
torrentbytes_cookies = ""
|
227
|
+
[IPTORRENTS]
|
228
|
+
iptorrents = 0
|
229
|
+
iptorrents_custom_url = ""
|
230
|
+
iptorrents_username = ""
|
231
|
+
iptorrents_password = ""
|
232
|
+
iptorrents_ratio = ""
|
233
|
+
iptorrents_minseed = 1
|
234
|
+
iptorrents_minleech = 0
|
235
|
+
iptorrents_freeleech = 0
|
236
|
+
iptorrents_search_mode = eponly
|
237
|
+
iptorrents_search_fallback = 0
|
238
|
+
iptorrents_enable_daily = 1
|
239
|
+
iptorrents_enable_backlog = 1
|
240
|
+
iptorrents_cookies = ""
|
241
|
+
[BJ_SHARE]
|
242
|
+
bj_share = 0
|
243
|
+
bj_share_username = ""
|
244
|
+
bj_share_password = ""
|
245
|
+
bj_share_ratio = ""
|
246
|
+
bj_share_minseed = 1
|
247
|
+
bj_share_minleech = 0
|
248
|
+
bj_share_search_mode = eponly
|
249
|
+
bj_share_search_fallback = 0
|
250
|
+
bj_share_enable_daily = 1
|
251
|
+
bj_share_enable_backlog = 1
|
252
|
+
bj_share_cookies = ""
|
253
|
+
[ILCORSARONERO]
|
254
|
+
ilcorsaronero = 0
|
255
|
+
ilcorsaronero_engrelease = 0
|
256
|
+
ilcorsaronero_ratio = ""
|
257
|
+
ilcorsaronero_minseed = 1
|
258
|
+
ilcorsaronero_minleech = 0
|
259
|
+
ilcorsaronero_search_mode = eponly
|
260
|
+
ilcorsaronero_search_fallback = 0
|
261
|
+
ilcorsaronero_enable_daily = 1
|
262
|
+
ilcorsaronero_enable_backlog = 1
|
263
|
+
ilcorsaronero_subtitle = 0
|
264
|
+
ilcorsaronero_cookies = ""
|
265
|
+
[NCORE_CC]
|
266
|
+
ncore_cc = 0
|
267
|
+
ncore_cc_username = ""
|
268
|
+
ncore_cc_password = ""
|
269
|
+
ncore_cc_ratio = ""
|
270
|
+
ncore_cc_minseed = 1
|
271
|
+
ncore_cc_minleech = 0
|
272
|
+
ncore_cc_search_mode = eponly
|
273
|
+
ncore_cc_search_fallback = 0
|
274
|
+
ncore_cc_enable_daily = 1
|
275
|
+
ncore_cc_enable_backlog = 1
|
276
|
+
ncore_cc_cookies = ""
|
277
|
+
[MORETHANTV]
|
278
|
+
morethantv = 0
|
279
|
+
morethantv_username = ""
|
280
|
+
morethantv_password = ""
|
281
|
+
morethantv_ratio = ""
|
282
|
+
morethantv_minseed = 1
|
283
|
+
morethantv_minleech = 0
|
284
|
+
morethantv_freeleech = 0
|
285
|
+
morethantv_search_mode = eponly
|
286
|
+
morethantv_search_fallback = 0
|
287
|
+
morethantv_enable_daily = 1
|
288
|
+
morethantv_enable_backlog = 1
|
289
|
+
morethantv_cookies = ""
|
290
|
+
[TVCHAOSUK]
|
291
|
+
tvchaosuk = 0
|
292
|
+
tvchaosuk_username = ""
|
293
|
+
tvchaosuk_password = ""
|
294
|
+
tvchaosuk_ratio = ""
|
295
|
+
tvchaosuk_minseed = 1
|
296
|
+
tvchaosuk_minleech = 0
|
297
|
+
tvchaosuk_freeleech = 0
|
298
|
+
tvchaosuk_search_mode = eponly
|
299
|
+
tvchaosuk_search_fallback = 0
|
300
|
+
tvchaosuk_enable_daily = 1
|
301
|
+
tvchaosuk_enable_backlog = 1
|
302
|
+
tvchaosuk_cookies = ""
|
303
|
+
[HDTORRENTS_IT]
|
304
|
+
hdtorrents_it = 0
|
305
|
+
hdtorrents_it_username = ""
|
306
|
+
hdtorrents_it_password = ""
|
307
|
+
hdtorrents_it_ratio = ""
|
308
|
+
hdtorrents_it_minseed = 1
|
309
|
+
hdtorrents_it_minleech = 0
|
310
|
+
hdtorrents_it_freeleech = 0
|
311
|
+
hdtorrents_it_search_mode = eponly
|
312
|
+
hdtorrents_it_search_fallback = 0
|
313
|
+
hdtorrents_it_enable_daily = 1
|
314
|
+
hdtorrents_it_enable_backlog = 1
|
315
|
+
hdtorrents_it_cookies = ""
|
316
|
+
[OMGWTFNZBS]
|
317
|
+
omgwtfnzbs = 0
|
318
|
+
omgwtfnzbs_api_key = ""
|
319
|
+
omgwtfnzbs_username = ""
|
320
|
+
omgwtfnzbs_search_mode = eponly
|
321
|
+
omgwtfnzbs_search_fallback = 0
|
322
|
+
omgwtfnzbs_enable_daily = 1
|
323
|
+
omgwtfnzbs_enable_backlog = 1
|
324
|
+
omgwtfnzbs_cookies = ""
|
325
|
+
[NORBITS]
|
326
|
+
norbits = 0
|
327
|
+
norbits_username = ""
|
328
|
+
norbits_passkey = ""
|
329
|
+
norbits_ratio = ""
|
330
|
+
norbits_minseed = 1
|
331
|
+
norbits_minleech = 0
|
332
|
+
norbits_search_mode = eponly
|
333
|
+
norbits_search_fallback = 0
|
334
|
+
norbits_enable_daily = 1
|
335
|
+
norbits_enable_backlog = 1
|
336
|
+
norbits_cookies = ""
|
337
|
+
[SPEEDCD]
|
338
|
+
speedcd = 0
|
339
|
+
speedcd_username = ""
|
340
|
+
speedcd_password = ""
|
341
|
+
speedcd_ratio = ""
|
342
|
+
speedcd_minseed = 1
|
343
|
+
speedcd_minleech = 0
|
344
|
+
speedcd_freeleech = 0
|
345
|
+
speedcd_search_mode = eponly
|
346
|
+
speedcd_search_fallback = 0
|
347
|
+
speedcd_enable_daily = 1
|
348
|
+
speedcd_enable_backlog = 1
|
349
|
+
speedcd_cookies = ""
|
350
|
+
[IMMORTALSEED]
|
351
|
+
immortalseed = 0
|
352
|
+
immortalseed_username = ""
|
353
|
+
immortalseed_password = ""
|
354
|
+
immortalseed_passkey = ""
|
355
|
+
immortalseed_ratio = ""
|
356
|
+
immortalseed_minseed = 1
|
357
|
+
immortalseed_minleech = 0
|
358
|
+
immortalseed_freeleech = 0
|
359
|
+
immortalseed_search_mode = eponly
|
360
|
+
immortalseed_search_fallback = 0
|
361
|
+
immortalseed_enable_daily = 1
|
362
|
+
immortalseed_enable_backlog = 1
|
363
|
+
immortalseed_cookies = ""
|
364
|
+
[DANISHBITS]
|
365
|
+
danishbits = 0
|
366
|
+
danishbits_username = ""
|
367
|
+
danishbits_passkey = ""
|
368
|
+
danishbits_ratio = ""
|
369
|
+
danishbits_minseed = 1
|
370
|
+
danishbits_minleech = 0
|
371
|
+
danishbits_freeleech = 0
|
372
|
+
danishbits_search_mode = eponly
|
373
|
+
danishbits_search_fallback = 0
|
374
|
+
danishbits_enable_daily = 1
|
375
|
+
danishbits_enable_backlog = 1
|
376
|
+
danishbits_cookies = ""
|
377
|
+
[NYAA]
|
378
|
+
nyaa = 0
|
379
|
+
nyaa_confirmed = 1
|
380
|
+
nyaa_ratio = ""
|
381
|
+
nyaa_minseed = 1
|
382
|
+
nyaa_minleech = 0
|
383
|
+
nyaa_search_mode = eponly
|
384
|
+
nyaa_search_fallback = 0
|
385
|
+
nyaa_enable_daily = 1
|
386
|
+
nyaa_enable_backlog = 1
|
387
|
+
nyaa_cookies = ""
|
388
|
+
[TORRENTDAY]
|
389
|
+
torrentday = 0
|
390
|
+
torrentday_custom_url = ""
|
391
|
+
torrentday_username = ""
|
392
|
+
torrentday_password = ""
|
393
|
+
torrentday_ratio = ""
|
394
|
+
torrentday_minseed = 1
|
395
|
+
torrentday_minleech = 0
|
396
|
+
torrentday_freeleech = 0
|
397
|
+
torrentday_search_mode = eponly
|
398
|
+
torrentday_search_fallback = 0
|
399
|
+
torrentday_enable_daily = 1
|
400
|
+
torrentday_enable_backlog = 1
|
401
|
+
torrentday_cookies = ""
|
402
|
+
[PRETOME]
|
403
|
+
pretome = 0
|
404
|
+
pretome_username = ""
|
405
|
+
pretome_password = ""
|
406
|
+
pretome_pin = ""
|
407
|
+
pretome_ratio = ""
|
408
|
+
pretome_minseed = 1
|
409
|
+
pretome_minleech = 0
|
410
|
+
pretome_search_mode = eponly
|
411
|
+
pretome_search_fallback = 0
|
412
|
+
pretome_enable_daily = 1
|
413
|
+
pretome_enable_backlog = 1
|
414
|
+
pretome_cookies = ""
|
415
|
+
[SCENEACCESS]
|
416
|
+
sceneaccess = 0
|
417
|
+
sceneaccess_username = ""
|
418
|
+
sceneaccess_password = ""
|
419
|
+
sceneaccess_ratio = ""
|
420
|
+
sceneaccess_minseed = 1
|
421
|
+
sceneaccess_minleech = 0
|
422
|
+
sceneaccess_search_mode = eponly
|
423
|
+
sceneaccess_search_fallback = 0
|
424
|
+
sceneaccess_enable_daily = 1
|
425
|
+
sceneaccess_enable_backlog = 1
|
426
|
+
sceneaccess_cookies = ""
|
427
|
+
[NEWPCT]
|
428
|
+
newpct = 0
|
429
|
+
newpct_onlyspasearch = 0
|
430
|
+
newpct_ratio = ""
|
431
|
+
newpct_search_mode = eponly
|
432
|
+
newpct_search_fallback = 0
|
433
|
+
newpct_enable_daily = 1
|
434
|
+
newpct_enable_backlog = 1
|
435
|
+
newpct_cookies = ""
|
436
|
+
[TOKYOTOSHOKAN]
|
437
|
+
tokyotoshokan = 0
|
438
|
+
tokyotoshokan_ratio = ""
|
439
|
+
tokyotoshokan_minseed = 1
|
440
|
+
tokyotoshokan_minleech = 0
|
441
|
+
tokyotoshokan_search_mode = eponly
|
442
|
+
tokyotoshokan_search_fallback = 0
|
443
|
+
tokyotoshokan_enable_daily = 1
|
444
|
+
tokyotoshokan_enable_backlog = 1
|
445
|
+
tokyotoshokan_cookies = ""
|
446
|
+
[HDTORRENTS]
|
447
|
+
hdtorrents = 0
|
448
|
+
hdtorrents_username = ""
|
449
|
+
hdtorrents_password = ""
|
450
|
+
hdtorrents_ratio = ""
|
451
|
+
hdtorrents_minseed = 1
|
452
|
+
hdtorrents_minleech = 0
|
453
|
+
hdtorrents_freeleech = 0
|
454
|
+
hdtorrents_search_mode = eponly
|
455
|
+
hdtorrents_search_fallback = 0
|
456
|
+
hdtorrents_enable_daily = 1
|
457
|
+
hdtorrents_enable_backlog = 1
|
458
|
+
hdtorrents_cookies = ""
|
459
|
+
[THEPIRATEBAY]
|
460
|
+
thepiratebay = 0
|
461
|
+
thepiratebay_confirmed = 1
|
462
|
+
thepiratebay_ratio = ""
|
463
|
+
thepiratebay_minseed = 1
|
464
|
+
thepiratebay_minleech = 0
|
465
|
+
thepiratebay_search_mode = eponly
|
466
|
+
thepiratebay_search_fallback = 0
|
467
|
+
thepiratebay_enable_daily = 1
|
468
|
+
thepiratebay_enable_backlog = 1
|
469
|
+
thepiratebay_cookies = ""
|
470
|
+
[TORRENT9]
|
471
|
+
torrent9 = 0
|
472
|
+
torrent9_custom_url = ""
|
473
|
+
torrent9_ratio = ""
|
474
|
+
torrent9_minseed = 1
|
475
|
+
torrent9_minleech = 0
|
476
|
+
torrent9_search_mode = eponly
|
477
|
+
torrent9_search_fallback = 0
|
478
|
+
torrent9_enable_daily = 1
|
479
|
+
torrent9_enable_backlog = 1
|
480
|
+
torrent9_cookies = ""
|
481
|
+
[GIMMEPEERS]
|
482
|
+
gimmepeers = 0
|
483
|
+
gimmepeers_username = ""
|
484
|
+
gimmepeers_password = ""
|
485
|
+
gimmepeers_ratio = ""
|
486
|
+
gimmepeers_minseed = 1
|
487
|
+
gimmepeers_minleech = 0
|
488
|
+
gimmepeers_search_mode = eponly
|
489
|
+
gimmepeers_search_fallback = 0
|
490
|
+
gimmepeers_enable_daily = 1
|
491
|
+
gimmepeers_enable_backlog = 1
|
492
|
+
gimmepeers_cookies = ""
|
493
|
+
[BITCANNON]
|
494
|
+
bitcannon = 0
|
495
|
+
bitcannon_custom_url = ""
|
496
|
+
bitcannon_api_key = ""
|
497
|
+
bitcannon_ratio = ""
|
498
|
+
bitcannon_minseed = 1
|
499
|
+
bitcannon_minleech = 0
|
500
|
+
bitcannon_search_mode = eponly
|
501
|
+
bitcannon_search_fallback = 0
|
502
|
+
bitcannon_enable_daily = 1
|
503
|
+
bitcannon_enable_backlog = 1
|
504
|
+
bitcannon_cookies = ""
|
505
|
+
[NEBULANCE]
|
506
|
+
nebulance = 0
|
507
|
+
nebulance_username = ""
|
508
|
+
nebulance_password = ""
|
509
|
+
nebulance_ratio = ""
|
510
|
+
nebulance_minseed = 1
|
511
|
+
nebulance_minleech = 0
|
512
|
+
nebulance_freeleech = 0
|
513
|
+
nebulance_search_mode = eponly
|
514
|
+
nebulance_search_fallback = 0
|
515
|
+
nebulance_enable_daily = 1
|
516
|
+
nebulance_enable_backlog = 1
|
517
|
+
nebulance_cookies = ""
|
518
|
+
[KICKASSTORRENTS]
|
519
|
+
kickasstorrents = 0
|
520
|
+
kickasstorrents_custom_url = ""
|
521
|
+
kickasstorrents_confirmed = 1
|
522
|
+
kickasstorrents_ratio = ""
|
523
|
+
kickasstorrents_minseed = 1
|
524
|
+
kickasstorrents_minleech = 0
|
525
|
+
kickasstorrents_search_mode = eponly
|
526
|
+
kickasstorrents_search_fallback = 0
|
527
|
+
kickasstorrents_enable_daily = 1
|
528
|
+
kickasstorrents_enable_backlog = 1
|
529
|
+
kickasstorrents_cookies = ""
|
530
|
+
[ARCHETORRENT]
|
531
|
+
archetorrent = 0
|
532
|
+
archetorrent_username = ""
|
533
|
+
archetorrent_password = ""
|
534
|
+
archetorrent_ratio = ""
|
535
|
+
archetorrent_minseed = 1
|
536
|
+
archetorrent_minleech = 0
|
537
|
+
archetorrent_freeleech = 0
|
538
|
+
archetorrent_search_mode = eponly
|
539
|
+
archetorrent_search_fallback = 0
|
540
|
+
archetorrent_enable_daily = 1
|
541
|
+
archetorrent_enable_backlog = 1
|
542
|
+
archetorrent_cookies = ""
|
543
|
+
[FILELIST]
|
544
|
+
filelist = 0
|
545
|
+
filelist_username = ""
|
546
|
+
filelist_password = ""
|
547
|
+
filelist_ratio = ""
|
548
|
+
filelist_minseed = 1
|
549
|
+
filelist_minleech = 0
|
550
|
+
filelist_search_mode = eponly
|
551
|
+
filelist_search_fallback = 0
|
552
|
+
filelist_enable_daily = 1
|
553
|
+
filelist_enable_backlog = 1
|
554
|
+
filelist_cookies = ""
|
555
|
+
[TORRENTLEECH]
|
556
|
+
torrentleech = 0
|
557
|
+
torrentleech_username = ""
|
558
|
+
torrentleech_password = ""
|
559
|
+
torrentleech_ratio = ""
|
560
|
+
torrentleech_minseed = 1
|
561
|
+
torrentleech_minleech = 0
|
562
|
+
torrentleech_search_mode = eponly
|
563
|
+
torrentleech_search_fallback = 0
|
564
|
+
torrentleech_enable_daily = 1
|
565
|
+
torrentleech_enable_backlog = 1
|
566
|
+
torrentleech_cookies = ""
|
567
|
+
[DEMONOID]
|
568
|
+
demonoid = 0
|
569
|
+
demonoid_sorting = seeders
|
570
|
+
demonoid_ratio = ""
|
571
|
+
demonoid_minseed = 1
|
572
|
+
demonoid_minleech = 0
|
573
|
+
demonoid_search_mode = eponly
|
574
|
+
demonoid_search_fallback = 0
|
575
|
+
demonoid_enable_daily = 1
|
576
|
+
demonoid_enable_backlog = 1
|
577
|
+
demonoid_cookies = ""
|
578
|
+
[BINSEARCH]
|
579
|
+
binsearch = 0
|
580
|
+
binsearch_search_mode = eponly
|
581
|
+
binsearch_search_fallback = 0
|
582
|
+
binsearch_enable_daily = 0
|
583
|
+
binsearch_enable_backlog = 0
|
584
|
+
binsearch_cookies = ""
|
585
|
+
[MAGNETDL]
|
586
|
+
magnetdl = 0
|
587
|
+
magnetdl_custom_url = ""
|
588
|
+
magnetdl_ratio = ""
|
589
|
+
magnetdl_minseed = 1
|
590
|
+
magnetdl_minleech = 0
|
591
|
+
magnetdl_search_mode = eponly
|
592
|
+
magnetdl_search_fallback = 0
|
593
|
+
magnetdl_enable_daily = 1
|
594
|
+
magnetdl_enable_backlog = 1
|
595
|
+
magnetdl_cookies = ""
|
596
|
+
[HD4FREE]
|
597
|
+
hd4free = 0
|
598
|
+
hd4free_api_key = ""
|
599
|
+
hd4free_username = ""
|
600
|
+
hd4free_ratio = ""
|
601
|
+
hd4free_minseed = 1
|
602
|
+
hd4free_minleech = 0
|
603
|
+
hd4free_freeleech = 0
|
604
|
+
hd4free_search_mode = eponly
|
605
|
+
hd4free_search_fallback = 0
|
606
|
+
hd4free_enable_daily = 1
|
607
|
+
hd4free_enable_backlog = 1
|
608
|
+
hd4free_cookies = ""
|
609
|
+
[Newznab]
|
610
|
+
newznab_data = ""
|
611
|
+
[Matrix]
|
612
|
+
matrix_notify_download = 0
|
613
|
+
matrix_api_token = ""
|
614
|
+
matrix_notify_snatch = 0
|
615
|
+
matrix_room = ""
|
616
|
+
use_matrix = 0
|
617
|
+
matrix_notify_subtitledownload = 0
|
618
|
+
matrix_server = ""
|
619
|
+
[TorrentRss]
|
620
|
+
torrentrss_data = ""
|
621
|
+
[Shares]
|
622
|
+
[RocketChat]
|
623
|
+
use_rocketchat = 0
|
624
|
+
rocketchat_notify_subtitledownload = 0
|
625
|
+
rocketchat_icon_emoji = ""
|
626
|
+
rocketchat_notify_download = 0
|
627
|
+
rocketchat_webhook = ""
|
628
|
+
rocketchat_notify_snatch = 0
|
629
|
+
[Cloudflare]
|
630
|
+
audience_policy = ""
|
631
|
+
auth_domain = ""
|
632
|
+
[Pushalot]
|
633
|
+
pushalot_notify_onsubtitledownload = 0
|
634
|
+
pushalot_authorizationtoken = ""
|
635
|
+
pushalot_notify_onsnatch = 0
|
636
|
+
pushalot_notify_ondownload = 0
|
637
|
+
use_pushalot = 0
|
638
|
+
[Email]
|
639
|
+
email_notify_onsnatch = 0
|
640
|
+
email_list = ""
|
641
|
+
email_password = ""
|
642
|
+
email_notify_onpostprocess = 0
|
643
|
+
email_subject = ""
|
644
|
+
email_tls = 0
|
645
|
+
use_email = 0
|
646
|
+
email_notify_ondownload = 0
|
647
|
+
email_port = 25
|
648
|
+
email_notify_onsubtitledownload = 0
|
649
|
+
email_user = ""
|
650
|
+
email_from = ""
|
651
|
+
email_host = ""
|
652
|
+
[FreeMobile]
|
653
|
+
freemobile_notify_onsnatch = 0
|
654
|
+
freemobile_notify_onsubtitledownload = 0
|
655
|
+
freemobile_notify_ondownload = 0
|
656
|
+
freemobile_apikey = ""
|
657
|
+
freemobile_id = ""
|
658
|
+
use_freemobile = 0
|
659
|
+
[Blackhole]
|
660
|
+
nzb_dir = ""
|
661
|
+
torrent_dir = ""
|
662
|
+
[Plex]
|
663
|
+
plex_client_password = ""
|
664
|
+
plex_server_username = ""
|
665
|
+
plex_server_https = 0
|
666
|
+
plex_server_password = ""
|
667
|
+
plex_server_host = ""
|
668
|
+
plex_notify_onsubtitledownload = 0
|
669
|
+
plex_notify_onsnatch = 0
|
670
|
+
plex_server_token = ""
|
671
|
+
plex_client_host = ""
|
672
|
+
plex_client_username = ""
|
673
|
+
use_plex_client = 0
|
674
|
+
plex_update_library = 0
|
675
|
+
plex_notify_ondownload = 0
|
676
|
+
use_plex_server = 0
|
677
|
+
[NZBget]
|
678
|
+
nzbget_host = ""
|
679
|
+
nzbget_category_anime = anime
|
680
|
+
nzbget_use_https = 0
|
681
|
+
nzbget_password = tegbzn6789
|
682
|
+
nzbget_category = tv
|
683
|
+
nzbget_priority = 100
|
684
|
+
nzbget_category_anime_backlog = anime
|
685
|
+
nzbget_username = nzbget
|
686
|
+
nzbget_category_backlog = tv
|
687
|
+
[Libnotify]
|
688
|
+
libnotify_notify_onsubtitledownload = 0
|
689
|
+
libnotify_notify_onsnatch = 0
|
690
|
+
libnotify_notify_ondownload = 0
|
691
|
+
use_libnotify = 0
|
692
|
+
[Subtitles]
|
693
|
+
opensubtitles_password = ""
|
694
|
+
itasa_password = ""
|
695
|
+
subtitles_keep_only_wanted = 0
|
696
|
+
addic7ed_username = ""
|
697
|
+
legendastv_username = ""
|
698
|
+
subtitles_include_specials = 1
|
699
|
+
legendastv_password = ""
|
700
|
+
subscenter_username = ""
|
701
|
+
subtitles_default = 0
|
702
|
+
subtitles_multi = 1
|
703
|
+
subtitles_extra_scripts = ""
|
704
|
+
opensubtitles_username = ""
|
705
|
+
embedded_subtitles_all = 0
|
706
|
+
subtitles_history = 0
|
707
|
+
subtitles_hearing_impaired = 0
|
708
|
+
itasa_username = ""
|
709
|
+
subtitles_languages = ""
|
710
|
+
subtitles_finder_frequency = 1
|
711
|
+
subtitles_perfect_match = 1
|
712
|
+
SUBTITLES_SERVICES_LIST = ""
|
713
|
+
addic7ed_password = ""
|
714
|
+
use_subtitles = 0
|
715
|
+
subtitles_dir = ""
|
716
|
+
subscenter_password = ""
|
717
|
+
SUBTITLES_SERVICES_ENABLED = ""
|
718
|
+
[Slack]
|
719
|
+
slack_notify_snatch = 0
|
720
|
+
slack_notify_subtitledownload = 0
|
721
|
+
slack_notify_download = 0
|
722
|
+
slack_icon_emoji = ""
|
723
|
+
use_slack = 0
|
724
|
+
slack_webhook = ""
|
725
|
+
[Prowl]
|
726
|
+
prowl_notify_ondownload = 0
|
727
|
+
prowl_api = ""
|
728
|
+
prowl_message_title = SickChill
|
729
|
+
prowl_priority = 0
|
730
|
+
prowl_notify_onsubtitledownload = 0
|
731
|
+
prowl_notify_onsnatch = 0
|
732
|
+
use_prowl = 0
|
733
|
+
[SABnzbd]
|
734
|
+
sab_forced = 0
|
735
|
+
sab_category = tv
|
736
|
+
sab_apikey = ""
|
737
|
+
sab_category_anime = anime
|
738
|
+
sab_category_backlog = tv
|
739
|
+
sab_host = ""
|
740
|
+
sab_password = ""
|
741
|
+
sab_username = ""
|
742
|
+
sab_category_anime_backlog = anime
|
743
|
+
[KODI]
|
744
|
+
kodi_update_onlyfirst = 0
|
745
|
+
kodi_notify_onsnatch = 0
|
746
|
+
kodi_notify_ondownload = 0
|
747
|
+
kodi_host = ""
|
748
|
+
kodi_username = ""
|
749
|
+
kodi_always_on = 1
|
750
|
+
kodi_update_library = 0
|
751
|
+
use_kodi = 0
|
752
|
+
kodi_password = ""
|
753
|
+
kodi_update_full = 0
|
754
|
+
kodi_notify_onsubtitledownload = 0
|
755
|
+
[Telegram]
|
756
|
+
telegram_notify_ondownload = 0
|
757
|
+
telegram_apikey = ""
|
758
|
+
telegram_id = ""
|
759
|
+
use_telegram = 0
|
760
|
+
telegram_notify_onsnatch = 0
|
761
|
+
telegram_notify_onsubtitledownload = 0
|
762
|
+
[Twitter]
|
763
|
+
twitter_username = ""
|
764
|
+
use_twitter = 0
|
765
|
+
twitter_password = ""
|
766
|
+
twitter_notify_ondownload = 0
|
767
|
+
twitter_notify_onsubtitledownload = 0
|
768
|
+
twitter_notify_onsnatch = 0
|
769
|
+
twitter_prefix = SickChill
|
770
|
+
twitter_dmto = ""
|
771
|
+
twitter_usedm = 0
|
772
|
+
[pyTivo]
|
773
|
+
pytivo_share_name = ""
|
774
|
+
pytivo_notify_ondownload = 0
|
775
|
+
pytivo_tivo_name = ""
|
776
|
+
pytivo_notify_onsnatch = 0
|
777
|
+
pytivo_host = ""
|
778
|
+
pytivo_notify_onsubtitledownload = 0
|
779
|
+
pyTivo_update_library = 0
|
780
|
+
use_pytivo = 0
|
781
|
+
[General]
|
782
|
+
naming_anime_multi_ep = 1
|
783
|
+
use_nzbs = 0
|
784
|
+
log_size = 10.0
|
785
|
+
git_remote = origin
|
786
|
+
use_icacls = 1
|
787
|
+
season_folders_default = 1
|
788
|
+
add_shows_with_year = 0
|
789
|
+
web_ipv6 = 0
|
790
|
+
anime_default = 0
|
791
|
+
metadata_wdtv = 0|0|0|0|0|0|0|0|0|0
|
792
|
+
tvdb_user = ""
|
793
|
+
update_frequency = 1
|
794
|
+
naming_anime_pattern = Season %0S/%SN - S%0SE%0E - %EN
|
795
|
+
encryption_version = 0
|
796
|
+
https_key = server.key
|
797
|
+
processor_follow_symlinks = 0
|
798
|
+
allow_high_priority = 1
|
799
|
+
developer = 0
|
800
|
+
anon_redirect = http://dereferer.org/?
|
801
|
+
indexer_timeout = 20
|
802
|
+
naming_anime = 3
|
803
|
+
metadata_mede8er = 0|0|0|0|0|0|0|0|0|0
|
804
|
+
naming_custom_sports = 0
|
805
|
+
debug = 0
|
806
|
+
metadata_tivo = 0|0|0|0|0|0|0|0|0|0
|
807
|
+
dailysearch_frequency = 40
|
808
|
+
download_url = ""
|
809
|
+
naming_custom_anime = 0
|
810
|
+
tvdb_user_key = ""
|
811
|
+
ignore_words = "german,french,core2hd,dutch,swedish,reenc,MrLss"
|
812
|
+
root_dirs = ""
|
813
|
+
delete_non_associated_files = 1
|
814
|
+
ended_shows_update_interval = 7
|
815
|
+
api_key = 1a25bfd55638850e1232c711fa64e0cc
|
816
|
+
randomize_providers = 0
|
817
|
+
web_host = 0.0.0.0
|
818
|
+
config_version = 8
|
819
|
+
check_propers_interval = daily
|
820
|
+
nzb_method = blackhole
|
821
|
+
process_automatically = 0
|
822
|
+
calendar_unprotected = 0
|
823
|
+
sync_files = "!sync,lftp-pget-status,bts,!qb,!qB"
|
824
|
+
prefer_words = ""
|
825
|
+
git_path = ""
|
826
|
+
web_cookie_secret = 0/y+0MqpTgCQnlKbqtAQu3HFmH89HEz3qXs928zZP6o=
|
827
|
+
news_last_read = 1970-01-01
|
828
|
+
ssl_verify = 1
|
829
|
+
handle_reverse_proxy = 0
|
830
|
+
launch_browser = 1
|
831
|
+
unpack = 0
|
832
|
+
cur_commit_hash = ""
|
833
|
+
move_associated_files = 0
|
834
|
+
status_default = 5
|
835
|
+
naming_multi_ep = 1
|
836
|
+
encryption_secret = QzyXjYmiRlWJjC5SK5Z8CL+ICuU7REbKgLVrptI5Mp4=
|
837
|
+
torrent_method = blackhole
|
838
|
+
localhost_ip = ""
|
839
|
+
use_listview = 0
|
840
|
+
version_notify = 1
|
841
|
+
enable_https = 0
|
842
|
+
default_page = home
|
843
|
+
web_root = "/sickchill"
|
844
|
+
add_shows_wo_dir = 0
|
845
|
+
cur_commit_branch = ""
|
846
|
+
indexer_default = 1
|
847
|
+
use_torrents = 0
|
848
|
+
display_all_seasons = 1
|
849
|
+
no_delete = 0
|
850
|
+
usenet_retention = 500
|
851
|
+
naming_abd_pattern = %SN - %A.D - %EN
|
852
|
+
download_propers = 1
|
853
|
+
use_free_space_check = 1
|
854
|
+
socket_timeout = 30
|
855
|
+
proxy_setting = ""
|
856
|
+
del_rar_contents = 0
|
857
|
+
backlog_frequency = 21
|
858
|
+
no_restart = 0
|
859
|
+
notify_on_login = 0
|
860
|
+
trash_remove_show = 0
|
861
|
+
process_method = copy
|
862
|
+
metadata_ps3 = 0|0|0|0|0|0|0|0|0|0
|
863
|
+
ignore_broken_symlinks = 0
|
864
|
+
showupdate_hour = 2
|
865
|
+
quality_default = 3
|
866
|
+
alt_unrar_tool = bsdtar
|
867
|
+
file_timestamp_timezone = network
|
868
|
+
require_words = ""
|
869
|
+
git_username = ""
|
870
|
+
auto_update = 0
|
871
|
+
git_remote_url = https://github.com/SickChill/SickChill.git
|
872
|
+
tv_download_dir = ""
|
873
|
+
trackers_list = "udp://coppersurfer.tk:6969/announce,udp://open.demonii.com:1337,udp://exodus.desync.com:6969,udp://9.rarbg.me:2710/announce,udp://glotorrents.pw:6969/announce,udp://tracker.openbittorrent.com:80/announce,udp://9.rarbg.to:2710/announce"
|
874
|
+
naming_custom_abd = 0
|
875
|
+
extra_scripts = ""
|
876
|
+
git_token_password = ""
|
877
|
+
web_use_gzip = 1
|
878
|
+
indexerDefaultLang = en
|
879
|
+
allowed_extensions = "srt,nfo,srr,sfv"
|
880
|
+
autopostprocessor_frequency = 10
|
881
|
+
branch = master
|
882
|
+
ep_default_deleted_status = 6
|
883
|
+
rename_episodes = 1
|
884
|
+
metadata_mediabrowser = 0|0|0|0|0|0|0|0|0|0
|
885
|
+
naming_sports_pattern = %SN - %A-D - %EN
|
886
|
+
create_missing_show_dirs = 0
|
887
|
+
trash_rotate_logs = 0
|
888
|
+
naming_strip_year = 0
|
889
|
+
airdate_episodes = 0
|
890
|
+
quality_allow_hevc = 0
|
891
|
+
proxy_indexers = 1
|
892
|
+
web_log = 0
|
893
|
+
log_nr = 5
|
894
|
+
git_reset = 1
|
895
|
+
web_password = <%= @password %>
|
896
|
+
provider_order = ""
|
897
|
+
https_cert = server.crt
|
898
|
+
scene_default = 0
|
899
|
+
backlog_days = 7
|
900
|
+
notify_on_update = 1
|
901
|
+
skip_removed_files = 0
|
902
|
+
status_default_after = 3
|
903
|
+
naming_pattern = Season %0S/%SN - S%0SE%0E - %EN
|
904
|
+
sort_article = 0
|
905
|
+
web_port = <%= @port %>
|
906
|
+
web_username = <%= @user %>
|
907
|
+
dbdebug = 0
|
908
|
+
unpack_dir = ""
|
909
|
+
ignored_subs_list = "dk,fin,heb,kor,nor,nordic,pl,swe"
|
910
|
+
calendar_icons = 0
|
911
|
+
postpone_if_sync_files = 1
|
912
|
+
metadata_kodi = 0|0|0|0|0|0|0|0|0|0
|
913
|
+
cpu_preset = NORMAL
|
914
|
+
unrar_tool = unrar
|
915
|
+
nfo_rename = 1
|
916
|
+
metadata_kodi_12plus = 0|0|0|0|0|0|0|0|0|0
|
917
|
+
keep_processed_dir = 1
|
918
|
+
backlog_missing_only = 0
|
919
|
+
[NMA]
|
920
|
+
nma_notify_onsubtitledownload = 0
|
921
|
+
use_nma = 0
|
922
|
+
nma_notify_onsnatch = 0
|
923
|
+
nma_priority = 0
|
924
|
+
nma_api = ""
|
925
|
+
nma_notify_ondownload = 0
|
926
|
+
[Boxcar2]
|
927
|
+
use_boxcar2 = 0
|
928
|
+
boxcar2_notify_onsnatch = 0
|
929
|
+
boxcar2_notify_ondownload = 0
|
930
|
+
boxcar2_accesstoken = ""
|
931
|
+
boxcar2_notify_onsubtitledownload = 0
|
932
|
+
[NMJ]
|
933
|
+
nmj_host = ""
|
934
|
+
nmj_mount = ""
|
935
|
+
use_nmj = 0
|
936
|
+
nmj_database = ""
|
937
|
+
[NZBs]
|
938
|
+
nzbs = 0
|
939
|
+
nzbs_uid = ""
|
940
|
+
nzbs_hash = ""
|
941
|
+
[Growl]
|
942
|
+
growl_host = ""
|
943
|
+
use_growl = 0
|
944
|
+
growl_notify_ondownload = 0
|
945
|
+
growl_notify_onsubtitledownload = 0
|
946
|
+
growl_notify_onsnatch = 0
|
947
|
+
growl_password = ""
|
948
|
+
[GUI]
|
949
|
+
theme_name = dark
|
950
|
+
coming_eps_missed_range = 7
|
951
|
+
fanart_background_opacity = 0.4
|
952
|
+
history_layout = detailed
|
953
|
+
coming_eps_display_snatched = 0
|
954
|
+
coming_eps_display_paused = 0
|
955
|
+
gui_name = slick
|
956
|
+
custom_css_path = ""
|
957
|
+
fuzzy_dating = 0
|
958
|
+
poster_sortdir = 1
|
959
|
+
poster_sortby = name
|
960
|
+
trim_zero = 0
|
961
|
+
date_preset = %x
|
962
|
+
home_layout = poster
|
963
|
+
coming_eps_layout = banner
|
964
|
+
coming_eps_sort = date
|
965
|
+
time_preset = %I:%M:%S %p
|
966
|
+
timezone_display = local
|
967
|
+
sickchill_background_path = ""
|
968
|
+
custom_css = 0
|
969
|
+
display_show_specials = 1
|
970
|
+
language = ""
|
971
|
+
fanart_background = 1
|
972
|
+
history_limit = 100
|
973
|
+
sickchill_background = 0
|
974
|
+
[Synology]
|
975
|
+
username = ""
|
976
|
+
path = ""
|
977
|
+
host = ""
|
978
|
+
password = ""
|
979
|
+
use_synoindex = 0
|
980
|
+
[Newzbin]
|
981
|
+
newzbin = 0
|
982
|
+
newzbin_password = ""
|
983
|
+
newzbin_username = ""
|
984
|
+
[ANIME]
|
985
|
+
anime_split_home_in_tabs = 0
|
986
|
+
anime_split_home = 0
|
987
|
+
[NMJv2]
|
988
|
+
nmjv2_dbloc = ""
|
989
|
+
nmjv2_database = ""
|
990
|
+
nmjv2_host = ""
|
991
|
+
use_nmjv2 = 0
|
992
|
+
[TORRENT]
|
993
|
+
torrent_verify_cert = 0
|
994
|
+
torrent_paused = 0
|
995
|
+
torrent_host = ""
|
996
|
+
torrent_path_incomplete = ""
|
997
|
+
torrent_label_anime = ""
|
998
|
+
torrent_path = ""
|
999
|
+
torrent_auth_type = ""
|
1000
|
+
torrent_rpcurl = transmission
|
1001
|
+
torrent_username = ""
|
1002
|
+
torrent_label = ""
|
1003
|
+
torrent_password = ""
|
1004
|
+
torrent_high_bandwidth = 0
|
1005
|
+
torrent_seed_time = 0
|
1006
|
+
[FailedDownloads]
|
1007
|
+
use_failed_downloads = 0
|
1008
|
+
delete_failed = 0
|
1009
|
+
[Pushover]
|
1010
|
+
pushover_notify_ondownload = 0
|
1011
|
+
pushover_sound = pushover
|
1012
|
+
use_pushover = 0
|
1013
|
+
pushover_notify_onsubtitledownload = 0
|
1014
|
+
pushover_priority = 0
|
1015
|
+
pushover_device = ""
|
1016
|
+
pushover_apikey = ""
|
1017
|
+
pushover_userkey = ""
|
1018
|
+
pushover_notify_onsnatch = 0
|
1019
|
+
[SynologyNotifier]
|
1020
|
+
synologynotifier_notify_onsnatch = 0
|
1021
|
+
synologynotifier_notify_ondownload = 0
|
1022
|
+
use_synologynotifier = 0
|
1023
|
+
synologynotifier_notify_onsubtitledownload = 0
|
1024
|
+
[Trakt]
|
1025
|
+
trakt_remove_serieslist = 0
|
1026
|
+
trakt_method_add = 0
|
1027
|
+
trakt_remove_watchlist = 0
|
1028
|
+
trakt_sync_watchlist = 0
|
1029
|
+
trakt_refresh_token = ""
|
1030
|
+
trakt_timeout = 30
|
1031
|
+
trakt_default_indexer = 1
|
1032
|
+
trakt_remove_show_from_sickchill = 0
|
1033
|
+
trakt_use_recommended = 0
|
1034
|
+
trakt_sync = 0
|
1035
|
+
use_trakt = 0
|
1036
|
+
trakt_blacklist_name = ""
|
1037
|
+
trakt_start_paused = 0
|
1038
|
+
trakt_access_token = ""
|
1039
|
+
trakt_sync_remove = 0
|
1040
|
+
trakt_username = ""
|
1041
|
+
[Emby]
|
1042
|
+
use_emby = 0
|
1043
|
+
emby_apikey = ""
|
1044
|
+
emby_host = ""
|
1045
|
+
[Twilio]
|
1046
|
+
twilio_account_sid = ""
|
1047
|
+
twilio_notify_ondownload = 0
|
1048
|
+
use_twilio = 0
|
1049
|
+
twilio_notify_onsubtitledownload = 0
|
1050
|
+
twilio_to_number = ""
|
1051
|
+
twilio_notify_onsnatch = 0
|
1052
|
+
twilio_phone_sid = ""
|
1053
|
+
twilio_auth_token = ""
|
1054
|
+
[Join]
|
1055
|
+
use_join = 0
|
1056
|
+
join_notify_onsnatch = 0
|
1057
|
+
join_notify_onsubtitledownload = 0
|
1058
|
+
join_apikey = ""
|
1059
|
+
join_notify_ondownload = 0
|
1060
|
+
join_id = ""
|
1061
|
+
[Pushbullet]
|
1062
|
+
pushbullet_channel = ""
|
1063
|
+
pushbullet_device = ""
|
1064
|
+
use_pushbullet = 0
|
1065
|
+
pushbullet_notify_ondownload = 0
|
1066
|
+
pushbullet_notify_onsubtitledownload = 0
|
1067
|
+
pushbullet_notify_onsnatch = 0
|
1068
|
+
pushbullet_api = ""
|
1069
|
+
[Discord]
|
1070
|
+
discord_notify_download = 0
|
1071
|
+
discord_notify_snatch = 0
|
1072
|
+
discord_webhook = ""
|
1073
|
+
use_discord = 0
|
1074
|
+
[ANIDB]
|
1075
|
+
anidb_use_mylist = 0
|
1076
|
+
use_anidb = 0
|
1077
|
+
anidb_password = ""
|
1078
|
+
anidb_username = ""
|