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

class apache::ssl {
  case $::operatingsystem {
    centos: { include apache::ssl::centos }
    openbsd: { include apache::ssl::openbsd }
    debian: { include apache::ssl::debian }
    defaults: { include apache::ssl::base }
  }
  if $apache::manage_shorewall {
    include shorewall::rules::https
  }
}