Puppet Class: r_profile::host

Defined in:
manifests/host.pp

Overview

R_profiles::Host

Ensure that certain hosts entries exist on this host

Parameters:

  • entries (Any) (defaults to: hiera("r_profile::host::entries",false))

    Hash of hosts to create - In a form suitable for create_resources



6
7
8
9
10
11
12
13
# File 'manifests/host.pp', line 6

class r_profile::host(
  $entries = hiera("r_profile::host::entries",false),
) {

  if $entries {
    create_resources("host", $entries)
  }
}