summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/ssl.pp12
-rw-r--r--manifests/ssl/itk.pp14
2 files changed, 14 insertions, 12 deletions
diff --git a/manifests/ssl.pp b/manifests/ssl.pp
index 8266050..32e7b34 100644
--- a/manifests/ssl.pp
+++ b/manifests/ssl.pp
@@ -31,15 +31,3 @@ class apache::ssl::gentoo inherits apache::ssl::base {
apache::module::file { '00_error_documents': }
apache::vhost::file { '00_default_ssl_vhost': }
}
-
-class apache::ssl::itk inherits apache::ssl {
- case $operatingsystem {
- centos: { include apache::ssl::itk::centos }
- }
-}
-
-class apache::ssl::itk::centos inherits apache::ssl::centos {
- Package['mod_ssl']{
- name => 'mod_ssl-itk',
- }
-}
diff --git a/manifests/ssl/itk.pp b/manifests/ssl/itk.pp
new file mode 100644
index 0000000..910a48d
--- /dev/null
+++ b/manifests/ssl/itk.pp
@@ -0,0 +1,14 @@
+# manifests/ssl/itk.pp
+
+class apache::ssl::itk inherits apache::ssl {
+ case $operatingsystem {
+ centos: { include apache::ssl::itk::centos }
+ }
+}
+
+class apache::ssl::itk::centos inherits apache::ssl::centos {
+ Package['mod_ssl']{
+ name => 'mod_ssl-itk',
+ }
+}
+