summaryrefslogtreecommitdiff
path: root/manifests/ssl/centos.pp
blob: 7bc8c8954513f43231645445e35fd5b571226c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class apache::ssl::centos inherits apache::ssl::base {
    package { 'mod_ssl':
        name => 'mod_ssl',
        ensure => present,
        require => Package[apache],
    }
    ::apache::config::global{ 'ssl.conf': }

    apache::config::global{'00-listen-ssl.conf':
      ensure => absent,
    }
}