diff --git a/lib/icinga/checkable.ti b/lib/icinga/checkable.ti index 81571f924..27a158da4 100644 --- a/lib/icinga/checkable.ti +++ b/lib/icinga/checkable.ti @@ -44,10 +44,6 @@ enum AcknowledgementType abstract class Checkable : CustomVarObject { - load_after ApiListener; - load_after Endpoint; - load_after Zone; - [config, required, navigation] name(CheckCommand) check_command (CheckCommandRaw) { navigate {{{ return CheckCommand::GetByName(GetCheckCommandRaw()); diff --git a/lib/icinga/host.ti b/lib/icinga/host.ti index 10a583e8c..a80c61a88 100644 --- a/lib/icinga/host.ti +++ b/lib/icinga/host.ti @@ -27,6 +27,10 @@ namespace icinga class Host : Checkable { + load_after ApiListener; + load_after Endpoint; + load_after Zone; + [config, no_user_modify] array(name(HostGroup)) groups { default {{{ return new Array(); }}} }; diff --git a/lib/icinga/service.ti b/lib/icinga/service.ti index 16b9f1a08..f016b9293 100644 --- a/lib/icinga/service.ti +++ b/lib/icinga/service.ti @@ -38,7 +38,10 @@ public: class Service : Checkable < ServiceNameComposer { + load_after ApiListener; + load_after Endpoint; load_after Host; + load_after Zone; [config, no_user_modify] array(name(ServiceGroup)) groups { default {{{ return new Array(); }}}