sensu/server: set manage_sensu_plugins to false by default

It's better to set it at False by default so the deployer has to enable
the parameter on one node with the plugins exported from this node.

It avoid dupplication resources when you forget to configure this
parameter and try to export the plugins frome everywhere.

Change-Id: Ied7baaf90bb5a98f338cdc0250078ee0b66d7c02
This commit is contained in:
Emilien Macchi
2015-03-13 18:51:40 -04:00
parent 561f600a28
commit 177f0aaed0

View File

@@ -47,7 +47,7 @@
# [*manage_sensu_plugins*]
# (optionnal) A boolean that determines if the Sensu plugins resources should be exported
# from this node
# Defaults to 'true'
# Defaults to 'false'
#
# [*sensu_api_ip*]
# (optionnal) IP address to bind the sensu_api to
@@ -74,7 +74,7 @@ class cloud::monitoring::server::sensu (
$checks = {},
$handlers = {},
$plugins = {},
$manage_sensu_plugins = true,
$manage_sensu_plugins = false,
$sensu_api_ip = $::ipaddress,
$sensu_api_port = '4568',
$uchiwa_ip = $::ipaddress,