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