Turn off accept_ra sysctl everywhere
[mirror/dsa-puppet.git] / modules / munin / manifests / master_per_node.pp
index cdb1dec..9a9bb06 100644 (file)
@@ -1,9 +1,8 @@
-define munin::master_per_node($ipaddress, $munin_async) {
-       $client_fqdn               = $name
-       $client_ipaddress          = $ipaddress
-       $client_munin_async        = $munin_async
-
-       file { "/etc/munin/munin-conf.d/${name}.conf":
-               content => template('munin/munin.conf_per_node.erb'),
-       }
+# entry per-node to be collected on the master
+define munin::master_per_node(
+  $client_fqdn               = $name,
+) {
+  file { "/etc/munin/munin-conf.d/${name}.conf":
+    content => template('munin/munin.conf_per_node.erb'),
+  }
 }