Answer ans = _agentMgr.send(hostId, setBootDev);
if (!ans.getResult()) {
throw new Exception("Set host " + hostId + " to PXE boot failed");
}
IpmiBootorResetCommand boot = new IpmiBootorResetCommand();
ans = _agentMgr.send(hostId, boot);
if (!ans.getResult()) {
throw new Exception("Boot/Reboot host " + hostId + " failed");
}