mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed the way dom0/domU xen role is defined in the setup module
This commit is contained in:
parent
1b8d912d2a
commit
29882f97e6
1 changed files with 5 additions and 4 deletions
|
@ -711,10 +711,11 @@ class LinuxVirtual(Virtual):
|
|||
def get_virtual_facts(self):
|
||||
if os.path.exists("/proc/xen"):
|
||||
self.facts['virtualization_type'] = 'xen'
|
||||
if os.path.exists('/proc/xen/capabilities'):
|
||||
self.facts['virtualization_role'] = 'host'
|
||||
else:
|
||||
self.facts['virtualization_role'] = 'guest'
|
||||
if os.path.exists('/proc/xen/capabilities'):
|
||||
for line in open('/proc/xen/capabilities'):
|
||||
if "control_d" in line:
|
||||
self.facts['virtualization_role'] = 'host'
|
||||
|
||||
elif os.path.exists('/proc/vz'):
|
||||
self.facts['virtualization_type'] = 'openvz'
|
||||
|
|
Loading…
Reference in a new issue