summaryrefslogtreecommitdiff
path: root/manifests/ssl
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-11-01 12:10:05 +0000
committermh <mh@immerda.ch>2008-11-01 12:10:05 +0000
commit7a0ddd2fd2b3c4f32bbe418818f4e6ad948d2b95 (patch)
treeea48c6597d9db2317e587ab474a27a76c61a2cd3 /manifests/ssl
parent5cba588724f05b4c8cc76b902860b5e757f4791c (diff)
factored itk stuff in a subfolder out
Diffstat (limited to 'manifests/ssl')
-rw-r--r--manifests/ssl/itk.pp14
1 files changed, 14 insertions, 0 deletions
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',
+ }
+}
+