Minor changes

This commit is contained in:
Loic Guegan 2023-10-29 09:29:10 +01:00
parent 004d249307
commit 38019cabe8

View file

@ -90,9 +90,9 @@ def exec(command, group=None):
for ip in nodes:
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)])
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-i", CONF["ssh"]["key_path"],"{}@{}".format(user,ip), " ".join(command)])
print(output.decode("utf-8"),end="")
else:
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "{}@{}".format(user,ip), " ".join(command)])
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "{}@{}".format(user,ip), " ".join(command)])
print(output.decode("utf-8"),end="")