summaryrefslogtreecommitdiff
path: root/manifests/status.pp
blob: d32069e510077b4bf30c7875ee39470306bbf208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# manifests/status.pp

class apache::status inherits apache {
    case $operatingsystem {
        centos: { include apache::status::centos }
        defaults: { include apache::status::base }
    }
    if $use_munin {
        include munin::plugins::apache
    }
}