summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2009-12-17 11:04:29 -0500
committerJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2009-12-17 11:04:29 -0500
commitb97e692e552fd13bf8ec474c5828668e0ecb4ffb (patch)
treed4e42b84a31ea969a19a40dcc4432c7102e64541
parente4db5feeba6fed42478fa8929f18781443d971d8 (diff)
add itk class for debian
-rw-r--r--manifests/debian/itk.pp6
-rw-r--r--manifests/itk.pp1
2 files changed, 7 insertions, 0 deletions
diff --git a/manifests/debian/itk.pp b/manifests/debian/itk.pp
new file mode 100644
index 0000000..b876612
--- /dev/null
+++ b/manifests/debian/itk.pp
@@ -0,0 +1,6 @@
+class apache::debian::itk inherits apache::debian {
+ include ::apache::base::itk
+ Package['apache']{
+ name => 'apache2-mpm-itk',
+ }
+}
diff --git a/manifests/itk.pp b/manifests/itk.pp
index 2f54769..640b69c 100644
--- a/manifests/itk.pp
+++ b/manifests/itk.pp
@@ -5,6 +5,7 @@
class apache::itk inherits apache {
case $operatingsystem {
centos: { include ::apache::centos::itk }
+ debian: { include ::apache::debian::itk }
default: { include ::apache::base::itk }
}
}