aboutsummaryrefslogtreecommitdiff
path: root/lib/leap_cli/config/node.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2014-11-09 15:18:18 -0800
committerelijah <elijah@riseup.net>2014-11-09 15:18:18 -0800
commit32e89e92600a361bdfe65ef34e3ac874515919f5 (patch)
tree75e91f04ce70e6dad0826f8db057d1a9ee9bc64f /lib/leap_cli/config/node.rb
parent38354dca9237c67668bf2510b3b43d8b2dbd5844 (diff)
downloadleap_cli-32e89e92600a361bdfe65ef34e3ac874515919f5.tar.gz
leap_cli-32e89e92600a361bdfe65ef34e3ac874515919f5.tar.bz2
make sure to specify HostKeyAlgorithms for ssh and rsync. this is needed because otherwise you can't connect to a server that has ecdsa host key if all you have is an rsa key host key. closes bug #6337
Diffstat (limited to 'lib/leap_cli/config/node.rb')
-rw-r--r--lib/leap_cli/config/node.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/leap_cli/config/node.rb b/lib/leap_cli/config/node.rb
index 30af5d1..fe685cf 100644
--- a/lib/leap_cli/config/node.rb
+++ b/lib/leap_cli/config/node.rb
@@ -63,6 +63,15 @@ module LeapCli; module Config
def test_dependencies
[]
end
+
+ # returns a string list of supported ssh host key algorithms for this node.
+ # or an empty string if it could not be determined
+ def supported_ssh_host_key_algorithms
+ @host_key_algo ||= SshKey.supported_host_key_algorithms(
+ Util.read_file([:node_ssh_pub_key, @node.name])
+ )
+ end
+
end
end; end