summaryrefslogtreecommitdiff
path: root/manifests/apache.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2013-01-26 22:36:52 +0100
committervarac <varacanero@zeromail.org>2016-03-09 17:20:58 +0100
commitbad75052820f221df575a1942417712e35ab1af7 (patch)
tree83713faf0dc598153e5557b56d2db3859ace314d /manifests/apache.pp
parentc0dee4a2393e23b226e123a427898de94b342141 (diff)
Added $storeconfigs parameter
With this you can disable collection of exported resources. On masterless setups, this module would otherwise complain.
Diffstat (limited to 'manifests/apache.pp')
-rw-r--r--manifests/apache.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/apache.pp b/manifests/apache.pp
index 8da9c11..87fe3d2 100644
--- a/manifests/apache.pp
+++ b/manifests/apache.pp
@@ -2,12 +2,14 @@
class nagios::apache(
$allow_external_cmd = false,
$manage_shorewall = false,
- $manage_munin = false
+ $manage_munin = false,
+ $storeconfigs = true
) {
class{'::nagios':
httpd => 'apache',
allow_external_cmd => $allow_external_cmd,
manage_munin => $manage_munin,
manage_shorewall => $manage_shorewall,
+ storeconfigs => $storeconfigs
}
}