mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
When checking for Xen for LinuxHardware processor facts, don't check sysfs if already found in /proc/
This commit is contained in:
parent
f274234824
commit
06b70e4f9c
1 changed files with 3 additions and 3 deletions
|
@ -612,10 +612,10 @@ class LinuxHardware(Hardware):
|
|||
|
||||
xen = False
|
||||
xen_paravirt = False
|
||||
if os.path.exists('/proc/xen'):
|
||||
xen = True
|
||||
try:
|
||||
if open('/sys/hypervisor/type').readline().strip() == 'xen':
|
||||
if os.path.exists('/proc/xen'):
|
||||
xen = True
|
||||
elif open('/sys/hypervisor/type').readline().strip() == 'xen':
|
||||
xen = True
|
||||
except IOError:
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue