Remove unnecessary default values

refs #9461
refs #8149
This commit is contained in:
Gunnar Beutner 2015-10-20 08:06:25 +02:00
parent 30b140761b
commit b77c9edca0

View File

@ -38,15 +38,9 @@ class GraphiteWriter : ConfigObject
[config] String service_name_template {
default {{{ return "icinga2.$host.name$.services.$service.name$.$service.check_command$"; }}}
};
[config] bool enable_send_thresholds {
default {{{ return false; }}}
};
[config] bool enable_send_metadata {
default {{{ return false; }}}
};
[config] bool enable_legacy_mode {
default {{{ return false; }}}
};
[config] bool enable_send_thresholds;
[config] bool enable_send_metadata;
[config] bool enable_legacy_mode;
};