summaryrefslogtreecommitdiff
path: root/manifests/register.pp
blob: 78d13d348f2cf79afaad72331cb48c46a07f8358 (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
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
    }

    @@concat::fragment{ "munin_client_${fhost}_${munin_port_real}":
        target => '/etc/munin/munin.conf',
        content => template("munin/client.erb"),
        tag => 'munin',
    }
}