summaryrefslogtreecommitdiff
path: root/manifests/register.pp
blob: 6c154e5f601ec0ef90d8f8524ca8699d69fdebee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
define munin::register (
  $host = $::fqdn,
  $port = '4949',
  $use_ssh = false,
  $description = 'absent',
  $config = []
)
{
  $fhost = $name
  $client_type = 'client'

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