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

class apache::ssl inherits apache {
  case $operatingsystem {
    centos: { include apache::ssl::centos }
    openbsd: { include apache::ssl::openbsd }
    defaults: { include apache::ssl::base }
  }
  if $use_shorewall {
    include shorewall::rules::http
  }
}