summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-12-04 08:46:46 +0100
committervarac <varacanero@zeromail.org>2015-12-04 08:46:46 +0100
commitf3c4e0f6b81eaa3f53b33792e1b8552bd41848d1 (patch)
tree52f134d0709923a559e34a9175dac80c6ba05fd6
parent465abc11546ea02664a957aed4672fd1311a22a9 (diff)
parentc127aec5b7d9851ef2e19e1380fabde92d09c899 (diff)
Merge remote-tracking branch 'micah/master'
-rw-r--r--manifests/module/negotiation.pp6
-rw-r--r--manifests/module/status.pp6
2 files changed, 12 insertions, 0 deletions
diff --git a/manifests/module/negotiation.pp b/manifests/module/negotiation.pp
new file mode 100644
index 0000000..15334fb
--- /dev/null
+++ b/manifests/module/negotiation.pp
@@ -0,0 +1,6 @@
+# enable/disable negotiation module
+class apache::module::negotiation ( $ensure = present )
+{
+
+ apache::module { 'negotiation': ensure => $ensure }
+}
diff --git a/manifests/module/status.pp b/manifests/module/status.pp
new file mode 100644
index 0000000..cfc437c
--- /dev/null
+++ b/manifests/module/status.pp
@@ -0,0 +1,6 @@
+# enable/disable status module
+class apache::module::status ( $ensure = present )
+{
+
+ apache::module { 'status': ensure => $present }
+}