mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 21:56:42 +00:00
Sick-Beard: set default port to 8082
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
cea4b0c8c8
commit
3df2ed0857
@ -5,7 +5,7 @@ diff -Naur Sick-Beard-0f076f4/autoProcessTV/autoProcessTV.cfg.sample Sick-Beard-
|
||||
[SickBeard]
|
||||
host=localhost
|
||||
-port=8081
|
||||
+port=8083
|
||||
+port=8082
|
||||
username=
|
||||
password=
|
||||
-web_root=
|
||||
@ -19,7 +19,7 @@ diff -Naur Sick-Beard-0f076f4/data/interfaces/default/config_general.tmpl Sick-B
|
||||
<label class="nocheck clearfix">
|
||||
<span class="component-title"> </span>
|
||||
- <span class="component-desc">Web port that Sick Beard should listen on (eg. 8081)</span>
|
||||
+ <span class="component-desc">Web port that Sick Beard should listen on (eg. 8083)</span>
|
||||
+ <span class="component-desc">Web port that Sick Beard should listen on (eg. 8082)</span>
|
||||
</label>
|
||||
</div>
|
||||
|
||||
@ -31,14 +31,14 @@ diff -Naur Sick-Beard-0f076f4/sickbeard/__init__.py Sick-Beard-0f076f4.patch/sic
|
||||
|
||||
try:
|
||||
- WEB_PORT = check_setting_int(CFG, 'General', 'web_port', 8081)
|
||||
+ WEB_PORT = check_setting_int(CFG, 'General', 'web_port', 8083)
|
||||
+ WEB_PORT = check_setting_int(CFG, 'General', 'web_port', 8082)
|
||||
except:
|
||||
- WEB_PORT = 8081
|
||||
+ WEB_PORT = 8083
|
||||
+ WEB_PORT = 8082
|
||||
|
||||
if WEB_PORT < 21 or WEB_PORT > 65535:
|
||||
- WEB_PORT = 8081
|
||||
+ WEB_PORT = 8083
|
||||
+ WEB_PORT = 8082
|
||||
|
||||
WEB_HOST = check_setting_str(CFG, 'General', 'web_host', '0.0.0.0')
|
||||
WEB_IPV6 = bool(check_setting_int(CFG, 'General', 'web_ipv6', 0))
|
||||
@ -50,7 +50,7 @@ diff -Naur Sick-Beard-0f076f4/sickbeard/webserveInit.py Sick-Beard-0f076f4.patch
|
||||
|
||||
def initWebServer(options = {}):
|
||||
- options.setdefault('port', 8081)
|
||||
+ options.setdefault('port', 8083)
|
||||
+ options.setdefault('port', 8082)
|
||||
options.setdefault('host', '0.0.0.0')
|
||||
options.setdefault('log_dir', None)
|
||||
options.setdefault('username', '')
|
Loading…
x
Reference in New Issue
Block a user