StatusDataWriter: Fix dependency relations.

Fixes #6131
This commit is contained in:
Michael Friedrich 2014-05-06 16:10:33 +02:00
parent 19b7f79bbb
commit cfa382f0dd
1 changed files with 2 additions and 1 deletions

View File

@ -731,6 +731,7 @@ void StatusDataWriter::UpdateObjectsCache(void)
String criteria = boost::algorithm::join(failure_criteria, ",");
/* Icinga 1.x only allows host->host, service->service dependencies */
if (!child_service && !parent_service) {
objectfp << "define hostdependency {" "\n"
"\t" "dependent_host_name" "\t" << child_host->GetName() << "\n"
@ -739,7 +740,7 @@ void StatusDataWriter::UpdateObjectsCache(void)
"\t" "notification_failure_criteria" "\t" << criteria << "\n"
"\t" "}" "\n"
"\n";
} else {
} else if (child_service && parent_service){
objectfp << "define servicedependency {" "\n"
"\t" "dependent_host_name" "\t" << child_service->GetHost()->GetName() << "\n"