diff --git a/lib/ssh.py b/lib/ssh.py index aabb4bb0ebef19b870c9e0dc2b853e8ae3a44030..01405877d220291b41b67b63634edf2e6372a722 100644 --- a/lib/ssh.py +++ b/lib/ssh.py @@ -75,6 +75,19 @@ class SshRunner: def _BuildSshOptions(self, batch, ask_key, use_cluster_key, strict_host_check): + """Builds a list with needed SSH options. + + @param batch: same as ssh's batch option + @param ask_key: allows ssh to ask for key confirmation; this + parameter conflicts with the batch one + @param use_cluster_key: if True, use the cluster name as the + HostKeyAlias name + @param strict_host_check: this makes the host key checking strict + + @rtype: list + @return: the list of options ready to use in L{utils.RunCmd} + + """ options = [ "-oEscapeChar=none", "-oHashKnownHosts=no",