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-02 21:32:11 +0100
commit3c86d6a60034f0e82e6ce3e7968db0c711d3d9e0 (patch)
tree599c70dd83bea0deb2d71d9239920a98876a6655 /manifests/apache.pp
parentc0dee4a2393e23b226e123a427898de94b342141 (diff)
Added $stored_config parameter to disabledisable collection of exported resourcesdisable_storeconfigs
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..54bd24c 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,
+ $stored_config = true
) {
class{'::nagios':
httpd => 'apache',
allow_external_cmd => $allow_external_cmd,
manage_munin => $manage_munin,
manage_shorewall => $manage_shorewall,
+ stored_config => $stored_config
}
}