summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/itk.pp3
-rw-r--r--manifests/ssl.pp12
2 files changed, 12 insertions, 3 deletions
diff --git a/manifests/itk.pp b/manifests/itk.pp
index 517da7b..16bcf3d 100644
--- a/manifests/itk.pp
+++ b/manifests/itk.pp
@@ -19,7 +19,4 @@ class apache::centos::itk inherits apache::centos {
Package['apache']{
name => 'httpd-itk',
}
- Package['mod_ssl']{
- name => 'mod_ssl-itk',
- }
}
diff --git a/manifests/ssl.pp b/manifests/ssl.pp
index 7106907..fb131f0 100644
--- a/manifests/ssl.pp
+++ b/manifests/ssl.pp
@@ -31,3 +31,15 @@ class apache::ssl::gentoo inherits apache::ssl::base {
apache::module::file { '00_error_documents': }
apache::vhost::file { '00_default_ssl_vhost': }
}
+
+class apach::ssl::itk inherits apache {
+ case $operatingsystem {
+ centos: { include apache::ssl::centos }
+ }
+}
+
+class apache::ssl::itk::centos inherits apache::ssl::centos {
+ Package['mod_ssl']{
+ name => 'mod_ssl-itk',
+ }
+}