blob: 1f7ca89eff642a3d42be1680257e168fe94c8920 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# enable apache status page
# manage munin plugins if requested
class apache::status {
case $::operatingsystem {
centos: { include apache::status::centos }
defaults: { include apache::status::base }
}
if $apache::manage_munin {
include apache::munin
}
}
|