Merge branch 'local-chroot-support-v2' of git://github.com/mmoya/ansible into testing
This commit is contained in:
commit
1aa239cec6
1 changed files with 26 additions and 24 deletions
50
setup
50
setup
|
@ -388,7 +388,7 @@ class LinuxHardware(Hardware):
|
|||
|
||||
def get_mount_facts(self):
|
||||
self.facts['mounts'] = []
|
||||
mtab = get_file_content('/etc/mtab')
|
||||
mtab = get_file_content('/etc/mtab', '')
|
||||
for line in mtab.split('\n'):
|
||||
if line.startswith('/'):
|
||||
fields = line.rstrip('\n').split()
|
||||
|
@ -967,30 +967,32 @@ class LinuxVirtual(Virtual):
|
|||
self.facts['virtualization_role'] = 'guest'
|
||||
return
|
||||
|
||||
for line in open('/proc/self/status').readlines():
|
||||
if re.match('^VxID: \d+', line):
|
||||
self.facts['virtualization_type'] = 'linux_vserver'
|
||||
if re.match('^VxID: 0', line):
|
||||
self.facts['virtualization_role'] = 'host'
|
||||
else:
|
||||
self.facts['virtualization_role'] = 'guest'
|
||||
return
|
||||
if os.path.exists('/proc/self/status'):
|
||||
for line in open('/proc/self/status').readlines():
|
||||
if re.match('^VxID: \d+', line):
|
||||
self.facts['virtualization_type'] = 'linux_vserver'
|
||||
if re.match('^VxID: 0', line):
|
||||
self.facts['virtualization_role'] = 'host'
|
||||
else:
|
||||
self.facts['virtualization_role'] = 'guest'
|
||||
return
|
||||
|
||||
for line in open('/proc/cpuinfo').readlines():
|
||||
if re.match('^model name.*QEMU Virtual CPU', line):
|
||||
self.facts['virtualization_type'] = 'kvm'
|
||||
elif re.match('^vendor_id.*User Mode Linux', line):
|
||||
self.facts['virtualization_type'] = 'uml'
|
||||
elif re.match('^model name.*UML', line):
|
||||
self.facts['virtualization_type'] = 'uml'
|
||||
elif re.match('^vendor_id.*PowerVM Lx86', line):
|
||||
self.facts['virtualization_type'] = 'powervm_lx86'
|
||||
elif re.match('^vendor_id.*IBM/S390', line):
|
||||
self.facts['virtualization_type'] = 'ibm_systemz'
|
||||
else:
|
||||
continue
|
||||
self.facts['virtualization_role'] = 'guest'
|
||||
return
|
||||
if os.path.exists('/proc/cpuinfo'):
|
||||
for line in open('/proc/cpuinfo').readlines():
|
||||
if re.match('^model name.*QEMU Virtual CPU', line):
|
||||
self.facts['virtualization_type'] = 'kvm'
|
||||
elif re.match('^vendor_id.*User Mode Linux', line):
|
||||
self.facts['virtualization_type'] = 'uml'
|
||||
elif re.match('^model name.*UML', line):
|
||||
self.facts['virtualization_type'] = 'uml'
|
||||
elif re.match('^vendor_id.*PowerVM Lx86', line):
|
||||
self.facts['virtualization_type'] = 'powervm_lx86'
|
||||
elif re.match('^vendor_id.*IBM/S390', line):
|
||||
self.facts['virtualization_type'] = 'ibm_systemz'
|
||||
else:
|
||||
continue
|
||||
self.facts['virtualization_role'] = 'guest'
|
||||
return
|
||||
|
||||
# Beware that we can have both kvm and virtualbox running on a single system
|
||||
if os.path.exists("/proc/modules"):
|
||||
|
|
Loading…
Add table
Reference in a new issue