mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 07:19:18 +01:00
CA-163138: Include the pre-check for VM migration status for supplemental pack installation, as the guidance for these is to restart the host after install.
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
parent
c7f3ea5b30
commit
dcd83c9cec
@ -315,7 +315,8 @@ namespace XenAdmin.Wizards.PatchingWizard
|
||||
|
||||
//Checking can evacuate host
|
||||
//CA-97061 - evacuate host -> suspended VMs. This is only needed for restartHost
|
||||
if (patch != null && patch.after_apply_guidance.Contains(after_apply_guidance.restartHost))
|
||||
//Also include this check for the supplemental packs (patch == null), as their guidance is restartHost
|
||||
if (patch == null || patch.after_apply_guidance.Contains(after_apply_guidance.restartHost))
|
||||
{
|
||||
checks.Add(new KeyValuePair<string, List<Check>>(Messages.CHECKING_CANEVACUATE_STATUS, new List<Check>()));
|
||||
checkGroup = checks[checks.Count - 1].Value;
|
||||
|
Loading…
Reference in New Issue
Block a user