summaryrefslogtreecommitdiff
path: root/manifests/register.pp
blob: 21f1d35ce588b797ebc188fc07057d2308cf2e6b (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
31
32
33
34
define munin::register (
  $host = 'absent',
  $port = 'absent',
  $description = 'absent',
  $config = []
)
{
    $fhost = $name
    $client_type = 'client'

    $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 { "munin_client_${fhost}_${munin_port_real}":
        ensure => present,
        path => "/var/lib/puppet/modules/munin/nodes/${fhost}_${munin_port_real}",
        content => template("munin/client.erb"),
        tag => 'munin',
    }
}