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
a4d3e71342
commit
ed05207987
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ from clusterman.config import CONF
|
||||||
def ssh_exec(host,command,use_key=True):
|
def ssh_exec(host,command,use_key=True):
|
||||||
user="root" if len(CONF["ssh"]["user"]) <= 0 else CONF["ssh"]["user"]
|
user="root" if len(CONF["ssh"]["user"]) <= 0 else CONF["ssh"]["user"]
|
||||||
key_path=CONF["ssh"]["key_path"]
|
key_path=CONF["ssh"]["key_path"]
|
||||||
if use_key:
|
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:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue