summaryrefslogtreecommitdiff
path: root/manifests/status.pp
blob: 0048a645e7010d049c750e5e386b134092638edb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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
    }
}

class apache::status::base {}


### distribution specific classes

### centos
class apache::status::centos {
    apache::config::file{ 'status.conf': }
}