Config: add macros/custom dictionaries to Host Service definition

additive inheritance (+=) works with templates too.
This commit is contained in:
Michael Friedrich 2013-07-16 14:53:21 +02:00
parent 2cc8ef17e1
commit d5579d9e2f
2 changed files with 14 additions and 0 deletions

View File

@ -231,6 +231,8 @@ void Host::UpdateSlaveServices(void)
keys.insert("servicedependencies");
keys.insert("hostdependencies");
keys.insert("export_macros");
keys.insert("macros");
keys.insert("custom");
ExpressionList::Ptr host_exprl = boost::make_shared<ExpressionList>();
item->GetLinkedExpressionList()->ExtractFiltered(keys, host_exprl);

View File

@ -50,6 +50,10 @@ type Host {
%attribute string "*"
},
%attribute dictionary "custom" {
%attribute string "*"
},
%attribute name(CheckCommand) "check_command",
%attribute name(TimePeriod) "check_period",
@ -156,6 +160,10 @@ type Host {
%attribute string "*"
},
%attribute dictionary "custom" {
%attribute string "*"
},
%attribute array "servicegroups" {
%attribute name(ServiceGroup) "*"
},
@ -193,6 +201,10 @@ type Service {
%attribute string "*"
},
%attribute dictionary "custom" {
%attribute string "*"
},
%require "check_command",
%attribute name(CheckCommand) "check_command",
%attribute number "max_check_attempts",