summaryrefslogtreecommitdiff
path: root/manifests/register.pp
blob: 59500a08541f206853788d4dfaacae3bc9a1f866 (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',
	}
}