mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 01:33:09 +00:00
When checking for Xen for LinuxHardware processor facts, don't check sysfs if already found in /proc/
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user