config: Rename Service::servicegroups to Service::groups.

This commit is contained in:
Gunnar Beutner 2013-09-25 09:21:17 +02:00
parent 03c047f4a7
commit b10db3bd7f
2 changed files with 3 additions and 4 deletions

View File

@ -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) "*"
}, },

View File

@ -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;