setup virtualization: fix RHEV product_name (#73919)
This commit is contained in:
parent
4780e10a2b
commit
a520da0584
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ class LinuxVirtual(Virtual):
|
||||||
if not found_virt:
|
if not found_virt:
|
||||||
virtual_facts['virtualization_type'] = 'RHV'
|
virtual_facts['virtualization_type'] = 'RHV'
|
||||||
found_virt = True
|
found_virt = True
|
||||||
elif product_family == 'RHEV Hypervisor':
|
elif product_name == 'RHEV Hypervisor':
|
||||||
guest_tech.add('RHEV')
|
guest_tech.add('RHEV')
|
||||||
if not found_virt:
|
if not found_virt:
|
||||||
virtual_facts['virtualization_type'] = 'RHEV'
|
virtual_facts['virtualization_type'] = 'RHEV'
|
||||||
|
|
Loading…
Reference in a new issue