Minor changes

This commit is contained in:
Loïc Guégan 2023-10-27 13:35:19 +02:00
parent 4066d4ff45
commit eb0864ac65

View file

@ -95,8 +95,8 @@ def exec(command):
print("----- Node {} -----".format(ip))
if len(key_path)>0:
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "-i", CONF["ssh"]["key_path"],"{}@{}".format(user,ip), " ".join(command)])
print(output.decode("utf-8"))
print(output.decode("utf-8"),end="")
else:
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "{}@{}".format(user,ip), " ".join(command)])
print(output.decode("utf-8"))
print(output.decode("utf-8"),end="")