mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-05 11:36:25 +02:00
Minor changes
This commit is contained in:
parent
004d249307
commit
38019cabe8
1 changed files with 2 additions and 2 deletions
|
@ -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="")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue