Check for user home directory while installing requirements.

Fix infinite rebooting, if user doesn't have home directory.
pull/1121/head
josdion 4 years ago
parent 216d10a90a
commit 88d1a63b1c

@ -54,20 +54,23 @@ if not args.no_update:
except ImportError: except ImportError:
logging.info('BAZARR unable to install requirements (pip not installed).') logging.info('BAZARR unable to install requirements (pip not installed).')
else: else:
logging.info('BAZARR installing requirements...') if os.path.expanduser("~") == '/':
subprocess.call([sys.executable, '-m', 'pip', 'install', '--user', '-r', logging.info('BAZARR unable to install requirements (user without home directory).')
os.path.join(os.path.dirname(__file__), '..', 'requirements.txt')],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
logging.info('BAZARR requirements installed.')
try:
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: else:
logging.info('Bazarr is being restarted...') logging.info('BAZARR installing requirements...')
restart_file.write(str('')) subprocess.call([sys.executable, '-m', 'pip', 'install', '--user', '-r',
restart_file.close() os.path.join(os.path.dirname(__file__), '..', 'requirements.txt')],
os._exit(0) stdout=subprocess.PIPE, stderr=subprocess.PIPE)
logging.info('BAZARR requirements installed.')
try:
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 # create random api_key if there's none in config.ini
if not settings.auth.apikey or settings.auth.apikey.startswith("b'"): if not settings.auth.apikey or settings.auth.apikey.startswith("b'"):

Loading…
Cancel
Save