mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 07:19:18 +01:00
CA-116547: During Installation of Hotfix requiring restart of PV guests displays Dom0 in the list of VMs to be rebooted in XenCenter.
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
parent
20cb3b4df1
commit
60c298d9e3
@ -73,7 +73,7 @@ namespace XenAdmin.Wizards.PatchingWizard
|
||||
case after_apply_guidance.restartPV:
|
||||
foreach (VM vm in Helpers.VMsRunningOn(servers))
|
||||
{
|
||||
if (vm.IsHVM)
|
||||
if (vm.IsHVM || !vm.is_a_real_vm)
|
||||
continue;
|
||||
sbLog.AppendFormat("\t{0}\r\n", vm.Name);
|
||||
}
|
||||
@ -81,7 +81,7 @@ namespace XenAdmin.Wizards.PatchingWizard
|
||||
case after_apply_guidance.restartHVM:
|
||||
foreach (VM vm in Helpers.VMsRunningOn(servers))
|
||||
{
|
||||
if (!vm.IsHVM)
|
||||
if (!vm.IsHVM || !vm.is_a_real_vm)
|
||||
continue;
|
||||
sbLog.AppendFormat("\t{0}\r\n", vm.Name);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user