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[:hostname] -%>.openstreetmap.org
28 # List on port 4949 on all interfaces
32 # List the addresses that are allowed to connect
34 <% @servers.each do |server| -%>
35 <% server.interfaces do |interface| -%>
36 allow ^<%= Regexp.quote(interface[:address]) %>$
38 <% if server[:openvpn] -%>
39 allow ^<%= Regexp.quote(server[:openvpn][:address]) %>$
42 <% node[:munin][:allow].each do |address| -%>
43 allow ^<%= Regexp.quote(address) %>$