summaryrefslogtreecommitdiff
path: root/test/leap_platform/provider_base/lib/macros/hosts.rb
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-04-09 23:44:53 -0700
committerelijah <elijah@riseup.net>2016-04-09 23:44:53 -0700
commita890550aeba848f1e07ec71967463ee4b247c623 (patch)
tree8c6b36aa130a4c2136346096599d04e71c0cd6d6 /test/leap_platform/provider_base/lib/macros/hosts.rb
parent31b4d6c59fb0ad755f2d52e382063eb0b1fca735 (diff)
fix tests
Diffstat (limited to 'test/leap_platform/provider_base/lib/macros/hosts.rb')
-rw-r--r--test/leap_platform/provider_base/lib/macros/hosts.rb63
1 files changed, 0 insertions, 63 deletions
diff --git a/test/leap_platform/provider_base/lib/macros/hosts.rb b/test/leap_platform/provider_base/lib/macros/hosts.rb
deleted file mode 100644
index 8a4058a..0000000
--- a/test/leap_platform/provider_base/lib/macros/hosts.rb
+++ /dev/null
@@ -1,63 +0,0 @@
-# encoding: utf-8
-
-module LeapCli
- module Macro
-
- ##
- ## HOSTS
- ##
-
- #
- # records the list of hosts that are encountered for this node
- #
- def hostnames(nodes)
- @referenced_nodes ||= Config::ObjectList.new
- nodes = listify(nodes)
- nodes.each_node do |node|
- @referenced_nodes[node.name] ||= node
- end
- return nodes.values.collect {|node| node.domain.name}
- end
-
- #
- # Generates entries needed for updating /etc/hosts on a node (as a hash).
- #
- # Argument `nodes` can be nil or a list of nodes. If nil, only include the
- # IPs of the other nodes this @node as has encountered (plus all mx nodes).
- #
- # Also, for virtual machines, we use the local address if this @node is in
- # the same location as the node in question.
- #
- # We include the ssh public key for each host, so that the hash can also
- # be used to generate the /etc/ssh/known_hosts
- #
- def hosts_file(nodes=nil)
- if nodes.nil?
- if @referenced_nodes && @referenced_nodes.any?
- nodes = @referenced_nodes
- nodes = nodes.merge(nodes_like_me[:services => 'mx']) # all nodes always need to communicate with mx nodes.
- end
- end
- return {} unless nodes
- hosts = {}
- my_location = @node['location'] ? @node['location']['name'] : nil
- nodes.each_node do |node|
- hosts[node.name] = {'ip_address' => node.ip_address, 'domain_internal' => node.domain.internal, 'domain_full' => node.domain.full}
- node_location = node['location'] ? node['location']['name'] : nil
- if my_location == node_location
- if facts = @node.manager.facts[node.name]
- if facts['ec2_public_ipv4']
- hosts[node.name]['ip_address'] = facts['ec2_public_ipv4']
- end
- end
- end
- host_pub_key = Util::read_file([:node_ssh_pub_key,node.name])
- if host_pub_key
- hosts[node.name]['host_pub_key'] = host_pub_key
- end
- end
- hosts
- end
-
- end
-end \ No newline at end of file