Displaying 1 result from an estimated 1 matches for "munin_allow".
2008 Nov 06
1
introduction with david's munin module question
...er.conf file
[files]
path /etc/puppet/files
allow 192.168.127.0/24
allow 127.0.0.1/8
[modules]
allow 192.168.127.0/24
allow 127.0.0.1/8
[plugins]
allow 192.168.127.0/24
allow 127.0.0.1/8
where 192.168.127.0/24 is my network (openvz virtual hosts).
manifests/site.pp file
# site.pp
$munin_allow=''192.168.127.103''
import "modules.pp"
where manifests/modules.pp has
# modules.pp
import "common"
import "munin"
and finally manifests/nodes.pp
# nodes.pp
node puppet {
include munin::client
}
node backuppc {
include munin::clien...