Minor changes

This commit is contained in:
Loic Guegan 2023-10-29 09:46:58 +01:00
parent f4da143142
commit ed8337414c
2 changed files with 13 additions and 6 deletions

View file

@ -32,11 +32,10 @@ def scan(timeout):
print("Skipping {}".format(ip))
continue
print("Contacting {}...".format(ip),end='')
try:
subprocess.run(["ping", "-c", "1", "-W", str(timeout), ip],capture_output=True,check=True)
if not utils.ping_test(ip):
nodes.append(ip)
print("=> Found!!")
except:
else:
print()
with open(CONF.NODE_FILE, "w") as f:
f.write(json.dumps(nodes,indent=4))
@ -52,10 +51,9 @@ def check(timeout):
fail=False
for ip in nodes:
print("Contacting {}...".format(ip),end='')
try:
subprocess.run(["ping", "-c", "1", "-W", str(timeout), ip],capture_output=True,check=True)
if not utils.ping_test(ip,timeout):
print()
except:
else:
fail=True
print("=> Not responding!!")
if not fail:

View file

@ -11,6 +11,15 @@ def ssh_exec(host,command,use_key=True):
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "{}@{}".format(user,ip), command])
return output.decode("utf-8")
def ping_test(host, timeout=None):
t=CONF["timeout"]
if timeout is not None:
t=timeout
try:
subprocess.run(["ping", "-c", "1", "-W", str(t), host],capture_output=True,check=True)
return 0
except:
return 1
def get_node_list():
nodes_path=CONF.NODE_FILE