mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-11 01:07:36 +08:00
Fix for restart after requirements installation.
This commit is contained in:
parent
30df4a8a2f
commit
f7c1ebdd8c
1 changed files with 9 additions and 4 deletions
|
@ -1,6 +1,7 @@
|
|||
# coding=utf-8
|
||||
|
||||
import os
|
||||
import io
|
||||
import rarfile
|
||||
import json
|
||||
import hashlib
|
||||
|
@ -59,10 +60,14 @@ if not args.no_update:
|
|||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||
logging.info('BAZARR requirements installed.')
|
||||
try:
|
||||
from server import webserver
|
||||
webserver.restart()
|
||||
except:
|
||||
logging.info('BAZARR unable to restart. Please do it manually.')
|
||||
restart_file = io.open(os.path.join(args.config_dir, "bazarr.restart"), "w", encoding='UTF-8')
|
||||
except Exception as e:
|
||||
logging.error('BAZARR Cannot create bazarr.restart file: ' + repr(e))
|
||||
else:
|
||||
logging.info('Bazarr is being restarted...')
|
||||
restart_file.write(str(''))
|
||||
restart_file.close()
|
||||
os._exit(0)
|
||||
|
||||
# create random api_key if there's none in config.ini
|
||||
if not settings.auth.apikey or settings.auth.apikey.startswith("b'"):
|
||||
|
|
Loading…
Reference in a new issue