summaryrefslogtreecommitdiff
path: root/manifests/register.pp
blob: 05d8f2accfc6eb6043461dc421e6d7302864745c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
define munin::register(
  $host = 'absent',
  $port = 'absent'
)
{
    $munin_port_real = $port ? {
    'absent' => $munin_port ? {
                  '' => 4949,
                  default => $munin_port
                },
    default => $port
  }

    $munin_host_real = $host ? {
    'absent' => $munin_host ? {
                  '' => $fqdn,
                  'fqdn' => $fqdn,
                  default => $munin_host
                },
    default => $host
    }

    @@file { "/var/lib/puppet/modules/munin/nodes/${name}_${munin_port_real}":
        ensure => present,
        content => template("munin/defaultclient.erb"),
        tag => 'munin',
    }
}