Codebase list python-faraday / debian/3.1.1-0kali1
Import new upstream release (fix installation) Sophie Brun 5 years ago
2 changed file(s) with 17 addition(s) and 17 deletion(s). Raw diff Collapse all Expand all
0 python-faraday (3.1-0kali1) kali-dev; urgency=medium
1
2 * Import new upstream release
3
4 -- Sophie Brun <[email protected]> Fri, 21 Sep 2018 16:12:18 +0200
0 python-faraday (3.1.1-0kali1) kali-dev; urgency=medium
1
2 * Import new upstream release
3
4 -- Sophie Brun <[email protected]> Tue, 25 Sep 2018 10:20:09 +0200
55
66 python-faraday (3.0.1-0kali1) kali-dev; urgency=medium
77
246246
247247 --- a/manage.py
248248 +++ b/manage.py
249 @@ -105,9 +105,9 @@ def sql_shell():
249 @@ -111,9 +111,9 @@ def sql_shell():
250250 @click.command(help='Checks configuration and faraday status.')
251251 @click.option('--check_postgresql', default=False, is_flag=True)
252252 @click.option('--check_faraday', default=False, is_flag=True)
258258
259259 selected = False
260260 exit_code = 0
261 @@ -121,9 +121,9 @@ def status_check(check_postgresql, check
261 @@ -127,9 +127,9 @@ def status_check(check_postgresql, check
262262 status_check_functions.print_faraday_status()
263263 selected = True
264264
282282 from requests.exceptions import InvalidURL, ConnectionError
283283 from colorama import Fore, Back, Style
284284 from server.utils.daemonize import is_server_running
285 @@ -104,37 +104,37 @@ def check_client():
285 @@ -106,37 +106,37 @@ def check_client():
286286 return False
287287
288288
351351
352352
353353 def check_credentials():
354 @@ -226,35 +226,35 @@ def print_faraday_status():
354 @@ -229,35 +229,35 @@ def print_faraday_status():
355355 .format(yellow=Fore.YELLOW, white=Fore.WHITE))
356356
357357
358358 -def print_depencencies_status():
359359 - """Prints Status of the dependencies using check_server_dependencies() and check_client_dependencies()"""
360 +#def print_depencencies_status():
361 +# """Prints Status of the dependencies using check_server_dependencies() and check_client_dependencies()"""
362
360 -
363361 - status, server_dep = check_server_dependencies()
364362 - if status == True:
365363 - print('[{red}-{white}] Some server dependencies are old: [' + ', '.join(server_dep) + ']. Update them with \"pip install -r requirements_server.txt -U\"') \
385383 - else:
386384 - print('[{green}+{white}] Client dependencies met'\
387385 - .format(green=Fore.GREEN, white=Fore.WHITE))
388 -
386 +#def print_depencencies_status():
387 +# """Prints Status of the dependencies using check_server_dependencies() and check_client_dependencies()"""
388
389389 +# status, server_dep = check_server_dependencies()
390390 +# if status == True:
391391 +# print('[{red}-{white}] Some server dependencies are old: [' + ', '.join(server_dep) + ']. Update them with \"pip install -r requirements_server.txt -U\"') \
394394 +# elif status == 0:
395395 +# print('[{red}-{white}] Client dependencies not met: [' + ', '.join(server_dep) + '] Install them with \"pip install -r requirements_server.txt -U\"')\
396396 +# .format(red=Fore.RED, white=Fore.WHITE)
397 +#
397 +
398398 +# else:
399399 +# print('[{green}+{white}] Server dependencies met' \
400400 +# .format(green=Fore.GREEN, white=Fore.WHITE))
403403 +# if status == True:
404404 +# print('[{red}-{white}] Some client dependencies are old: [' + ', '.join(client_dep) + ']. Update them with \"pip install -r requirements.txt -U\"') \
405405 +# .format(red=Fore.RED, white=Fore.WHITE)
406 +#
406 +
407407 +# elif status == 0:
408408 +# print('[{red}-{white}] Client dependencies not met: [' + ', '.join(client_dep) + ']. Install them with \"pip install -r requirements.txt -U\"')\
409409 +# .format(red=Fore.RED, white=Fore.WHITE)
410 +#
410 +
411411 +# else:
412412 +# print('[{green}+{white}] Client dependencies met'\
413413 +# .format(green=Fore.GREEN, white=Fore.WHITE))
415415
416416 def print_config_status():
417417 """Prints Status of the configuration using check_credentials(), check_storage_permission() and check_open_ports()"""
418 @@ -294,8 +294,8 @@ def full_status_check():
418 @@ -297,8 +297,8 @@ def full_status_check():
419419 print('\n{white}Checking if Faraday is running...'.format(white=Fore.WHITE))
420420 print_faraday_status()
421421