summaryrefslogtreecommitdiff
path: root/manifests/ssl
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/ssl')
-rw-r--r--manifests/ssl/centos.pp4
-rw-r--r--manifests/ssl/itk_plus/centos.pp11
2 files changed, 15 insertions, 0 deletions
diff --git a/manifests/ssl/centos.pp b/manifests/ssl/centos.pp
index b2c8ad8..7bc8c89 100644
--- a/manifests/ssl/centos.pp
+++ b/manifests/ssl/centos.pp
@@ -5,4 +5,8 @@ class apache::ssl::centos inherits apache::ssl::base {
require => Package[apache],
}
::apache::config::global{ 'ssl.conf': }
+
+ apache::config::global{'00-listen-ssl.conf':
+ ensure => absent,
+ }
}
diff --git a/manifests/ssl/itk_plus/centos.pp b/manifests/ssl/itk_plus/centos.pp
new file mode 100644
index 0000000..d8989c9
--- /dev/null
+++ b/manifests/ssl/itk_plus/centos.pp
@@ -0,0 +1,11 @@
+class apache::ssl::itk_plus::centos inherits apache::ssl::centos {
+ include apache::ssl::itk::centos
+ Apache::Config::Global['ssl.conf']{
+ source => "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"),
+ }
+}