Minor changes

This commit is contained in:
Loïc Guégan 2023-10-27 13:54:45 +02:00
parent 839f4d5a30
commit cd4e28906b

View file

@ -64,15 +64,11 @@ def scan(timeout):
CONF.save()
def check(timeout):
nodes_path=CONF.NODE_FILE
nodes=None
if os.path.exists(nodes_path):
with open(nodes_path) as f:
nodes=json.load(f)
else:
nodes=get_node_list()
if len(nodes) <= 0:
print("Please perform a scan before")
exit(0)
if not nodes == None:
# Perform ping check
fail=False
for ip in nodes:
print("Contacting {}...".format(ip),end='')