::
- domjobabort domain
+ domjobabort domain [--postcopy]
Abort the currently running domain job.
+When the job to be aborted is a migration which entered post-copy mode, it
+cannot be aborted as none of the hosts involved in migration has a complete
+state of the domain. Optional *--postcopy* can be used to interrupt such
+migration although doing so may effectively suspend the domain until the
+migration is resumed (see also *--postcopy-resume* option of ``migrate``).
+
domjobinfo
----------
static const vshCmdOptDef opts_domjobabort[] = {
VIRSH_COMMON_OPT_DOMAIN_FULL(VIR_CONNECT_LIST_DOMAINS_ACTIVE),
+ {.name = "postcopy",
+ .type = VSH_OT_BOOL,
+ .help = N_("interrupt post-copy migration")
+ },
{.name = NULL}
};
cmdDomjobabort(vshControl *ctl, const vshCmd *cmd)
{
g_autoptr(virshDomain) dom = NULL;
+ unsigned int flags = 0;
+ int rc;
if (!(dom = virshCommandOptDomain(ctl, cmd, NULL)))
return false;
- if (virDomainAbortJob(dom) < 0)
+ if (vshCommandOptBool(cmd, "postcopy"))
+ flags |= VIR_DOMAIN_ABORT_JOB_POSTCOPY;
+
+ if (flags == 0)
+ rc = virDomainAbortJob(dom);
+ else
+ rc = virDomainAbortJobFlags(dom, flags);
+
+ if (rc < 0)
return false;
return true;