diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/leap_cli/commands/node.rb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/leap_cli/commands/node.rb b/lib/leap_cli/commands/node.rb index 7bcfb23..b700a90 100644 --- a/lib/leap_cli/commands/node.rb +++ b/lib/leap_cli/commands/node.rb @@ -129,13 +129,7 @@ module LeapCli; module Commands buffer << "#\n" manager.nodes.keys.sort.each do |node_name| node = manager.nodes[node_name] - hostnames = [node.name, node.domain.internal, node.domain.full, node.ip_address].map {|hn| - if node.ssh.port == 22 - hn - else - "[#{hn}]:#{node.ssh.port}" - end - }.join(',') + hostnames = [node.name, node.domain.internal, node.domain.full, node.ip_address].join(',') pub_key = read_file([:node_ssh_pub_key,node.name]) if pub_key buffer << [hostnames, pub_key].join(' ') |