summaryrefslogtreecommitdiff
path: root/manifests/status.pp
blob: c5070130ae30ab318fff05c23253696f72f10fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# enable apache status page
# manage munin plugins if requested
class apache::status {
  case $::operatingsystem {
    centos: { include apache::status::centos }
    debian: { include apache::status::debian }
    defaults: { include apache::status::base }
  }
  if $apache::manage_munin {
    include apache::munin
  }
}