munin/master_per_node: try to be backwards compatible
[mirror/dsa-puppet.git] / modules / munin / manifests / master_per_node.pp
1 # entry per-node to be collected on the master
2 define munin::master_per_node(
3   $client_fqdn               = $name,
4   $client_ipaddress          = undef,
5   $client_munin_async        = undef,
6 ) {
7
8   file { "/etc/munin/munin-conf.d/${name}.conf":
9     content => template('munin/munin.conf_per_node.erb'),
10   }
11 }