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