Minor changes

This commit is contained in:
Loïc Guégan 2023-10-27 13:52:37 +02:00
parent eb0864ac65
commit 839f4d5a30

View file

@ -76,13 +76,13 @@ def check(timeout):
fail=False
for ip in nodes:
print("Contacting {}...".format(ip),end='')
response = os.system("ping -c 1 -W " + str(timeout)+ " " + ip + " &>/dev/null")
if response == 0:
print("")
else:
try:
subprocess.run(["ping", "-c", "1", "-W", str(timeout), ip],capture_output=True,check=True)
nodes.append(ip)
print()
except:
fail=True
print("=> Not responding!!")
print("=> Not responding!!")
if not fail:
print("Success: All nodes are reachable")
else: