1 # DO NOT EDIT - This file is being maintained by Chef
5 log_file /var/log/munin/munin-node.log
6 pid_file /var/run/munin/munin-node.pid
8 # Run in the background
16 # Regexps for files to ignore
21 ignore_file \.dpkg-(tmp|new|old|dist)$
22 ignore_file \.rpm(save|new)$
26 host_name <%= node.name %>
28 # List on port 4949 on all interfaces
32 # List the addresses that are allowed to connect
34 <% @servers.sort.each do |server| -%>
35 allow ^<%= Regexp.quote(server) %>$
37 <% node[:munin][:allow].each do |address| -%>
38 allow ^<%= Regexp.quote(address) %>$