Check if domain is running in qemuDomainAgentIsAvailable

If the domain is not running, the agent will not respond.
Do not even try.

https://bugzilla.redhat.com/show_bug.cgi?id=872424
(cherry picked from commit 723522328f2d92e4c2d5de35b3b3ec0302bb06ac)
This commit is contained in:
Ján Tomko 2015-02-26 14:00:47 +01:00 committed by Cole Robinson
parent 4f712a2e95
commit 37448a868e

View File

@ -2819,6 +2819,13 @@ qemuDomainAgentAvailable(virDomainObjPtr vm,
}
return false;
}
if (virDomainObjGetState(vm, NULL) != VIR_DOMAIN_RUNNING) {
if (reportError) {
virReportError(VIR_ERR_OPERATION_INVALID, "%s",
_("domain is not running"));
}
return false;
}
return true;
}