mirror of
https://github.com/Icinga/icinga2.git
synced 2025-09-23 17:57:54 +02:00
Load checkable children after their groups
This commit is contained in:
parent
bfd2ceacea
commit
0bb5af811d
@ -32,7 +32,9 @@ public:
|
|||||||
class Comment : ConfigObject < CommentNameComposer
|
class Comment : ConfigObject < CommentNameComposer
|
||||||
{
|
{
|
||||||
load_after Host;
|
load_after Host;
|
||||||
|
load_after HostGroup;
|
||||||
load_after Service;
|
load_after Service;
|
||||||
|
load_after ServiceGroup;
|
||||||
|
|
||||||
[config, no_user_modify, protected, required, navigation(host)] name(Host) host_name {
|
[config, no_user_modify, protected, required, navigation(host)] name(Host) host_name {
|
||||||
navigate {{{
|
navigate {{{
|
||||||
|
@ -23,7 +23,9 @@ class Dependency : CustomVarObject < DependencyNameComposer
|
|||||||
activation_priority -10;
|
activation_priority -10;
|
||||||
|
|
||||||
load_after Host;
|
load_after Host;
|
||||||
|
load_after HostGroup;
|
||||||
load_after Service;
|
load_after Service;
|
||||||
|
load_after ServiceGroup;
|
||||||
|
|
||||||
[config, no_user_modify, required, navigation(child_host)] name(Host) child_host_name {
|
[config, no_user_modify, required, navigation(child_host)] name(Host) child_host_name {
|
||||||
navigate {{{
|
navigate {{{
|
||||||
|
@ -23,7 +23,9 @@ class Downtime : ConfigObject < DowntimeNameComposer
|
|||||||
activation_priority -10;
|
activation_priority -10;
|
||||||
|
|
||||||
load_after Host;
|
load_after Host;
|
||||||
|
load_after HostGroup;
|
||||||
load_after Service;
|
load_after Service;
|
||||||
|
load_after ServiceGroup;
|
||||||
|
|
||||||
[config, no_user_modify, required, navigation(host)] name(Host) host_name {
|
[config, no_user_modify, required, navigation(host)] name(Host) host_name {
|
||||||
navigate {{{
|
navigate {{{
|
||||||
|
@ -21,7 +21,9 @@ public:
|
|||||||
class Notification : CustomVarObject < NotificationNameComposer
|
class Notification : CustomVarObject < NotificationNameComposer
|
||||||
{
|
{
|
||||||
load_after Host;
|
load_after Host;
|
||||||
|
load_after HostGroup;
|
||||||
load_after Service;
|
load_after Service;
|
||||||
|
load_after ServiceGroup;
|
||||||
load_after User;
|
load_after User;
|
||||||
load_after UserGroup;
|
load_after UserGroup;
|
||||||
|
|
||||||
|
@ -24,7 +24,9 @@ class ScheduledDowntime : CustomVarObject < ScheduledDowntimeNameComposer
|
|||||||
activation_priority 20;
|
activation_priority 20;
|
||||||
|
|
||||||
load_after Host;
|
load_after Host;
|
||||||
|
load_after HostGroup;
|
||||||
load_after Service;
|
load_after Service;
|
||||||
|
load_after ServiceGroup;
|
||||||
|
|
||||||
[config, protected, no_user_modify, required, navigation(host)] name(Host) host_name {
|
[config, protected, no_user_modify, required, navigation(host)] name(Host) host_name {
|
||||||
navigate {{{
|
navigate {{{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user