mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Minor changes
This commit is contained in:
parent
4066d4ff45
commit
eb0864ac65
1 changed files with 2 additions and 2 deletions
|
@ -95,8 +95,8 @@ def exec(command):
|
||||||
print("----- Node {} -----".format(ip))
|
print("----- Node {} -----".format(ip))
|
||||||
if len(key_path)>0:
|
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", "-i", CONF["ssh"]["key_path"],"{}@{}".format(user,ip), " ".join(command)])
|
||||||
print(output.decode("utf-8"))
|
print(output.decode("utf-8"),end="")
|
||||||
else:
|
else:
|
||||||
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "{}@{}".format(user,ip), " ".join(command)])
|
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "{}@{}".format(user,ip), " ".join(command)])
|
||||||
print(output.decode("utf-8"))
|
print(output.decode("utf-8"),end="")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue