From 56327f8e350ec5043c21043b7731897b316cfade Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Sat, 11 Oct 2014 19:33:03 +0200 Subject: [PATCH] Dependencies: Fix disable_notifications = true as default setting fixes #7257 --- lib/icinga/dependency.ti | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/icinga/dependency.ti b/lib/icinga/dependency.ti index b4162241e..519eaa8f9 100644 --- a/lib/icinga/dependency.ti +++ b/lib/icinga/dependency.ti @@ -26,7 +26,9 @@ class Dependency : CustomVarObject < DependencyNameComposer int state_filter_real (StateFilter); [config] bool disable_checks; - [config] bool disable_notifications; + [config] bool disable_notifications { + default {{{ return true; }}} + }; }; }