X-Git-Url: https://code.grnet.gr/git/ganeti-local/blobdiff_plain/bf75f13286c12d9928a35ec88ad8ead69558d71c..a5229439a0908a071d13dc8c1e9099e171e896bd:/lib/ssh.py diff --git a/lib/ssh.py b/lib/ssh.py index 0140587..f0362b4 100644 --- a/lib/ssh.py +++ b/lib/ssh.py @@ -25,6 +25,7 @@ import os +import logging from ganeti import utils from ganeti import errors @@ -200,7 +201,7 @@ class SshRunner: connected to). This is used to detect problems in ssh known_hosts files - (conflicting known hosts) and incosistencies between dns/hosts + (conflicting known hosts) and inconsistencies between dns/hosts entries and local machine names @param node: nodename of a host to check; can be short or @@ -218,6 +219,9 @@ class SshRunner: output = retval.output if output: msg += ": %s" % output + else: + msg += ": %s (no output)" % retval.fail_reason + logging.error("Command %s failed: %s" % (retval.cmd, msg)) return False, msg remotehostname = retval.stdout.strip() @@ -232,6 +236,6 @@ def WriteKnownHostsFile(cfg, file_name): """Writes the cluster-wide equally known_hosts file. """ - utils.WriteFile(file_name, mode=0700, + utils.WriteFile(file_name, mode=0600, data="%s ssh-rsa %s\n" % (cfg.GetClusterName(), cfg.GetHostKey()))