summaryrefslogtreecommitdiff
path: root/manifests/ssl.pp
blob: 75305be88963b5e1776c6162eb38201eccd80a9f (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::https
  }
}