summaryrefslogtreecommitdiffstats
path: root/fuel/build/f_l23network/puppet/modules/l23network/manifests/hosts_file.pp.orig
blob: 2295e3f9a4f581c418bdd588022b7bb8d6448b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class l23network::hosts_file (
  $nodes,
  $hosts_file = "/etc/hosts"
) {

  #Move original hosts file

  $host_resources = nodes_to_hosts($nodes)

  Host {
    ensure => present,
    target => $hosts_file
  }

  create_resources(host, $host_resources)
}