ensure => $ensure,
path => "/var/lib/puppet/modules/munin/nodes/00-performance",
content => "max_graph_jobs 1\n max_cgi_graph_jobs 1\nfork no\n",
- require => Concatenated_file['/etc/munin/munin.conf'],
+ require => $main ? {
+ true => Concatenated_file['/etc/munin/munin.conf'],
+ default => undef,
+ },
}
#
ensure => $ensure,
path => "/var/lib/puppet/modules/munin/nodes/00-rrdcache",
content => "rrdcached_socket /var/run/rrdcached.sock\n",
- require => Concatenated_file['/etc/munin/munin.conf'],
+ require => $main ? {
+ true => Concatenated_file['/etc/munin/munin.conf'],
+ default => undef,
+ },
}
if $main == true {