summaryrefslogtreecommitdiff
path: root/manifests/module/mpm_event.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-11-12 11:49:40 +0100
committervarac <varacanero@zeromail.org>2015-11-12 23:10:26 +0100
commit4d48de05c8ba2dd8d85356acce4a3f3d0c9e2167 (patch)
treec11e6f8b25dfb52b5acbd802784d0d551605f9a5 /manifests/module/mpm_event.pp
parentb57be4fc99274f850e7fe818cd8bbd7e70dba705 (diff)
[feat] add a few basic apache modules
To prevent duplicate declarations of the same apache module, i added one class per module that can get included from multiple places.
Diffstat (limited to 'manifests/module/mpm_event.pp')
-rw-r--r--manifests/module/mpm_event.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/module/mpm_event.pp b/manifests/module/mpm_event.pp
new file mode 100644
index 0000000..a824cb3
--- /dev/null
+++ b/manifests/module/mpm_event.pp
@@ -0,0 +1,7 @@
+# install mod_mpm_event (needed for jessie hosts)
+class apache::module::mpm_event ( $ensure = present )
+{
+
+ apache::module { 'mpm_event': ensure => $ensure }
+
+}