mirror of https://github.com/Icinga/icinga2.git
parent
c70623ec7c
commit
2a2460ae67
|
@ -232,7 +232,12 @@ bool RepositoryUtility::AddObject(const String& name, const String& type, const
|
|||
|
||||
String fname, fragment;
|
||||
BOOST_FOREACH(boost::tie(fname, fragment), ConfigFragmentRegistry::GetInstance()->GetItems()) {
|
||||
ConfigCompiler::CompileText(fname, fragment);
|
||||
Expression *expression = ConfigCompiler::CompileText(fname, fragment);
|
||||
if (expression) {
|
||||
VMFrame frame;
|
||||
expression->Evaluate(frame);
|
||||
delete expression;
|
||||
}
|
||||
}
|
||||
|
||||
ConfigType::Ptr ctype = ConfigType::GetByName(type);
|
||||
|
|
Loading…
Reference in New Issue