1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-12 09:17:41 +03:00

Feature #1797: Change name of actions in Request Manager

This commit is contained in:
Carlos Martín 2013-03-14 15:59:09 +01:00
parent 934abab379
commit b46c00d91e

View File

@ -335,7 +335,7 @@ void VirtualMachineAction::request_execute(xmlrpc_c::paramList const& paramList,
{
rc = dm->stop(id);
}
else if (action == "cancel")
else if (action == "shutdown-hard" || action == "cancel")
{
rc = dm->cancel(id);
}
@ -347,15 +347,15 @@ void VirtualMachineAction::request_execute(xmlrpc_c::paramList const& paramList,
{
rc = dm->resume(id);
}
else if (action == "restart")
else if (action == "boot" || action == "restart")
{
rc = dm->restart(id);
}
else if (action == "finalize")
else if (action == "destroy" || action == "finalize")
{
rc = dm->finalize(id);
}
else if (action == "resubmit")
else if (action == "destroy-recreate" || action == "resubmit")
{
rc = dm->resubmit(id);
}
@ -371,7 +371,7 @@ void VirtualMachineAction::request_execute(xmlrpc_c::paramList const& paramList,
{
rc = dm->resched(id, false);
}
else if (action == "reset")
else if (action == "reboot-hard" || action == "reset")
{
rc = dm->reset(id);
}