summaryrefslogtreecommitdiff
path: root/manifests/module/php5.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/php5.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/php5.pp')
-rw-r--r--manifests/module/php5.pp6
1 files changed, 6 insertions, 0 deletions
diff --git a/manifests/module/php5.pp b/manifests/module/php5.pp
new file mode 100644
index 0000000..ffb571f
--- /dev/null
+++ b/manifests/module/php5.pp
@@ -0,0 +1,6 @@
+# enable/disable php5 module
+class apache::module::php5 ( $ensure = present )
+{
+
+ apache::module { 'php5': ensure => $ensure }
+}