mirror of https://github.com/Icinga/icinga2.git
config: Rename Service::servicegroups to Service::groups.
This commit is contained in:
parent
03c047f4a7
commit
b10db3bd7f
|
@ -86,8 +86,7 @@ type Service {
|
||||||
%attribute array "host_dependencies" {
|
%attribute array "host_dependencies" {
|
||||||
%attribute name(Host) "*"
|
%attribute name(Host) "*"
|
||||||
},
|
},
|
||||||
%attribute array "service_
|
%attribute array "service_dependencies" {
|
||||||
dependencies" {
|
|
||||||
%attribute dictionary "*" {
|
%attribute dictionary "*" {
|
||||||
%require "host",
|
%require "host",
|
||||||
%attribute name(Host) "host",
|
%attribute name(Host) "host",
|
||||||
|
@ -96,7 +95,7 @@ type Service {
|
||||||
%attribute string "service"
|
%attribute string "service"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
%attribute array "servicegroups" {
|
%attribute array "groups" {
|
||||||
%attribute name(ServiceGroup) "*"
|
%attribute name(ServiceGroup) "*"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -345,7 +345,7 @@ private:
|
||||||
Dictionary::Ptr m_Macros;
|
Dictionary::Ptr m_Macros;
|
||||||
Array::Ptr m_HostDependencies;
|
Array::Ptr m_HostDependencies;
|
||||||
Array::Ptr m_ServiceDependencies;
|
Array::Ptr m_ServiceDependencies;
|
||||||
Array::Ptr m_ServiceGroups;
|
Array::Ptr m_Groups;
|
||||||
String m_ShortName;
|
String m_ShortName;
|
||||||
Value m_Acknowledgement;
|
Value m_Acknowledgement;
|
||||||
Value m_AcknowledgementExpiry;
|
Value m_AcknowledgementExpiry;
|
||||||
|
|
Loading…
Reference in New Issue