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
c217ff5e7b
commit
5914c11c89
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ def ssh_exec(host,command,use_key=True):
|
||||||
if use_key and len(key_path) > 0:
|
if use_key and len(key_path) > 0:
|
||||||
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-i", CONF["ssh"]["key_path"],"{}@{}".format(user,host), command])
|
output=subprocess.check_output(["ssh","-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-i", CONF["ssh"]["key_path"],"{}@{}".format(user,host), command])
|
||||||
return output.decode("utf-8")
|
return output.decode("utf-8")
|
||||||
else if use_key:
|
elif use_key:
|
||||||
print("Configuration variable \"key_path\" is not set")
|
print("Configuration variable \"key_path\" is not set")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue