mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
Merge pull request #773 from GaborApatiNagy/CA-187681
CA-187681: xs-tools ISO doesn't get mounted on dlvm xva(Centos 7 HVM)
This commit is contained in:
commit
9aee7a4f9b
@ -1304,11 +1304,7 @@ namespace XenAdmin.TabPages
|
||||
var gm = vm.Connection.Resolve(vm.guest_metrics);
|
||||
|
||||
bool isIoOptimized = gm != null && gm.network_paths_optimized && gm.storage_paths_optimized;
|
||||
|
||||
//vmtype is not yet implemented (will likely have different name) in XAPI, but this is the type that refers to the windows update readyness/capability of the VM and is expected to have the following values: yes, no, dontknow, got_it
|
||||
bool isManagementAgentInstalled = vm.HasUpgradeSupportInManagementAgent //&& vmtype != no"
|
||||
|| vm.HasRDP; //&& vmtype == no;
|
||||
|
||||
bool isManagementAgentInstalled = vm.GetVirtualisationStatus.HasFlag(VM.VirtualisationStatus.MANAGEMENT_INSTALLED);
|
||||
bool canInstallIoDriversAndManagementAgent = InstallToolsCommand.CanExecute(vm) && !isIoOptimized;
|
||||
bool canInstallManagementAgentOnly = InstallToolsCommand.CanExecute(vm) && isIoOptimized && !isManagementAgentInstalled;
|
||||
//canInstallIoDriversOnly is missing - management agent communicates with XS using the I/O drivers
|
||||
|
@ -92,7 +92,7 @@ namespace XenAdmin.Actions
|
||||
|
||||
// Check the version (if any) of the PV tools already on this host...
|
||||
VM_guest_metrics guestMetrics = Connection.Resolve(VM.guest_metrics);
|
||||
if (guestMetrics != null && guestMetrics.PV_drivers_up_to_date)
|
||||
if (guestMetrics != null && !VM.HasNewVirtualisationStates && guestMetrics.PV_drivers_up_to_date)
|
||||
{
|
||||
this.Description = Messages.INSTALLTOOLS_EXIST;
|
||||
return;
|
||||
|
@ -458,18 +458,6 @@ namespace XenAPI
|
||||
}
|
||||
}
|
||||
|
||||
public bool HasUpgradeSupportInManagementAgent
|
||||
{
|
||||
get
|
||||
{
|
||||
var metrics = Connection.Resolve(this.guest_metrics);
|
||||
if (metrics == null)
|
||||
return false;
|
||||
|
||||
return 0 != IntKey(metrics.other, "feature-supports-driver-update", 0);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Returns true if
|
||||
/// 1) the guest is HVM and
|
||||
/// 2a) the allow-gpu-passthrough restriction is absent or
|
||||
|
Loading…
Reference in New Issue
Block a user