mirror of https://github.com/Icinga/icinga2.git
Updated validation rules for service dependencies.
This commit is contained in:
parent
8f9ac837af
commit
b5f59dc882
|
@ -58,7 +58,14 @@ type Host {
|
||||||
%attribute string "*"
|
%attribute string "*"
|
||||||
},
|
},
|
||||||
%attribute dictionary "servicedependencies" {
|
%attribute dictionary "servicedependencies" {
|
||||||
%attribute string "*"
|
%attribute string "*",
|
||||||
|
%attribute dictionary "*" {
|
||||||
|
%require "host",
|
||||||
|
%attribute string "host",
|
||||||
|
|
||||||
|
%require "service",
|
||||||
|
%attribute string "service"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
%attribute dictionary "services" {
|
%attribute dictionary "services" {
|
||||||
%validator "native::ValidateServiceDictionary",
|
%validator "native::ValidateServiceDictionary",
|
||||||
|
@ -84,7 +91,14 @@ type Host {
|
||||||
%attribute string "*"
|
%attribute string "*"
|
||||||
},
|
},
|
||||||
%attribute dictionary "servicedependencies" {
|
%attribute dictionary "servicedependencies" {
|
||||||
%attribute string "*"
|
%attribute string "*",
|
||||||
|
%attribute dictionary "*" {
|
||||||
|
%require "host",
|
||||||
|
%attribute string "host",
|
||||||
|
|
||||||
|
%require "service",
|
||||||
|
%attribute string "service"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -138,7 +152,14 @@ type Service {
|
||||||
%attribute string "*"
|
%attribute string "*"
|
||||||
},
|
},
|
||||||
%attribute dictionary "servicedependencies" {
|
%attribute dictionary "servicedependencies" {
|
||||||
%attribute string "*"
|
%attribute string "*",
|
||||||
|
%attribute dictionary "*" {
|
||||||
|
%require "host",
|
||||||
|
%attribute string "host",
|
||||||
|
|
||||||
|
%require "service",
|
||||||
|
%attribute string "service"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
%attribute dictionary "servicegroups" {
|
%attribute dictionary "servicegroups" {
|
||||||
%attribute string "*"
|
%attribute string "*"
|
||||||
|
|
Loading…
Reference in New Issue