summaryrefslogtreecommitdiff
path: root/manifests/itk.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-08-01 13:00:29 +0000
committermh <mh@immerda.ch>2008-08-01 13:00:29 +0000
commit5048f4c166a47acc7b5bca0eb9a10bcca56da8a6 (patch)
treebd1943ed336b927f5e846bd33e9a959280c9f455 /manifests/itk.pp
parentd6a3b141488165e350359207a5b4b63a305b27ce (diff)
added itk based apache
Diffstat (limited to 'manifests/itk.pp')
-rw-r--r--manifests/itk.pp27
1 files changed, 27 insertions, 0 deletions
diff --git a/manifests/itk.pp b/manifests/itk.pp
new file mode 100644
index 0000000..7dfddeb
--- /dev/null
+++ b/manifests/itk.pp
@@ -0,0 +1,27 @@
+# manifests/itk.pp
+#
+# see: http://mpm-itk.sesse.net/
+
+class apache::itk inherits apache {
+ case $operatingsystem {
+ centos: { include apache::centos::itk }
+ default: { include apache::base::itk }
+ }
+}
+
+class apache::base::itk inherits apache::base {
+ Package['apache'] {
+ name => 'apache2-itk',
+ }
+}
+
+# http://hostby.net/home/2008/07/12/centos-5-and-mpm-itk/
+class apache::centos::itk inherits apache::centos {
+ Package['apache']{
+ name => 'httpd-itk',
+ }
+
+ Package['mod_ssl']{
+ name => 'mod_ssl-itk',
+ }
+}