summaryrefslogtreecommitdiff
path: root/puppet/modules/apache/manifests/ssl/itk_plus/centos.pp
blob: 00fb47291b83caab4bf41b16425de3441bf8c723 (plain)
1
2
3
4
5
6
7
8
9
10
11
class apache::ssl::itk_plus::centos inherits apache::ssl::centos {
  include apache::ssl::itk::centos
  Apache::Config::Global['ssl.conf']{
    source => "modules/apache/itk_plus/conf.d/${::operatingsystem}/ssl.conf",
  }

  Apache::Config::Global['00-listen-ssl.conf']{
    ensure => 'present',
    content => template("apache/itk_plus/${::operatingsystem}/00-listen-ssl.conf.erb"),
  }
}