committed by
Pierre Donias
parent
cdced63c1b
commit
2388593b8a
@@ -5,6 +5,7 @@
|
||||
- [Backup-ng/restore] Display size for full VM backup [#4009](https://github.com/vatesfr/xen-orchestra/issues/4009) (PR [#4245](https://github.com/vatesfr/xen-orchestra/pull/4245))
|
||||
- [Sr/new] Ability to select NFS version when creating NFS storage [#3951](https://github.com/vatesfr/xen-orchestra/issues/3951) (PR [#4277](https://github.com/vatesfr/xen-orchestra/pull/4277))
|
||||
- [auth-saml] Improve compatibility with Microsoft Azure Active Directory (PR [#4294](https://github.com/vatesfr/xen-orchestra/pull/4294))
|
||||
- [Host] Display warning when "Citrix Hypervisor" license has restrictions [#4251](https://github.com/vatesfr/xen-orchestra/issues/4164) (PR [#4235](https://github.com/vatesfr/xen-orchestra/pull/4279))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
|
||||
@@ -646,10 +646,14 @@ export const createCompare = criterias => (...items) => {
|
||||
|
||||
// ===================================================================
|
||||
|
||||
export const hasLicenseRestrictions = host =>
|
||||
host.productBrand !== 'XCP-ng' &&
|
||||
versionSatisfies(host.version, '>=7.3.0') &&
|
||||
host.license_params.sku_type === 'free'
|
||||
export const hasLicenseRestrictions = host => {
|
||||
const licenseType = host.license_params.sku_type
|
||||
return (
|
||||
host.productBrand !== 'XCP-ng' &&
|
||||
versionSatisfies(host.version, '>=7.3.0') &&
|
||||
(licenseType === 'free' || licenseType === 'express')
|
||||
)
|
||||
}
|
||||
|
||||
// ===================================================================
|
||||
|
||||
|
||||
Reference in New Issue
Block a user