mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add pvs info to linux hardware 'ansible_lvm' facts (#16773)
This change adds the information about physical volume to hardware facts.
This commit is contained in:
parent
c1a766df98
commit
4b9b0a25c3
1 changed files with 25 additions and 1 deletions
|
@ -1553,6 +1553,17 @@ class LinuxHardware(Hardware):
|
||||||
uptime_seconds_string = uptime_file_content.split(' ')[0]
|
uptime_seconds_string = uptime_file_content.split(' ')[0]
|
||||||
self.facts['uptime_seconds'] = int(float(uptime_seconds_string))
|
self.facts['uptime_seconds'] = int(float(uptime_seconds_string))
|
||||||
|
|
||||||
|
def _find_mapper_device_name(self, dm_device):
|
||||||
|
dm_prefix = '/dev/dm-'
|
||||||
|
mapper_device = dm_device
|
||||||
|
if dm_device.startswith(dm_prefix):
|
||||||
|
dmsetup_cmd = self.module.get_bin_path('dmsetup', True)
|
||||||
|
mapper_prefix = '/dev/mapper/'
|
||||||
|
rc, dm_name, err = self.module.run_command("%s info -C --noheadings -o name %s" % (dmsetup_cmd, dm_device))
|
||||||
|
if rc == 0:
|
||||||
|
mapper_device = mapper_prefix + dm_name.rstrip()
|
||||||
|
return mapper_device
|
||||||
|
|
||||||
def get_lvm_facts(self):
|
def get_lvm_facts(self):
|
||||||
""" Get LVM Facts if running as root and lvm utils are available """
|
""" Get LVM Facts if running as root and lvm utils are available """
|
||||||
|
|
||||||
|
@ -1581,7 +1592,20 @@ class LinuxHardware(Hardware):
|
||||||
items = lv_line.split()
|
items = lv_line.split()
|
||||||
lvs[items[0]] = {'size_g': items[3], 'vg': items[1]}
|
lvs[items[0]] = {'size_g': items[3], 'vg': items[1]}
|
||||||
|
|
||||||
self.facts['lvm'] = {'lvs': lvs, 'vgs': vgs}
|
|
||||||
|
pvs_path = self.module.get_bin_path('pvs')
|
||||||
|
#pvs fields: PV VG #Fmt #Attr PSize PFree
|
||||||
|
pvs = {}
|
||||||
|
if pvs_path:
|
||||||
|
rc, pv_lines, err = self.module.run_command( '%s %s' % (pvs_path, lvm_util_options))
|
||||||
|
for pv_line in pv_lines.splitlines():
|
||||||
|
items = pv_line.split()
|
||||||
|
pvs[self._find_mapper_device_name(items[0])] = {
|
||||||
|
'size_g': items[4],
|
||||||
|
'free_g': items[5],
|
||||||
|
'vg': items[1]}
|
||||||
|
|
||||||
|
self.facts['lvm'] = {'lvs': lvs, 'vgs': vgs, 'pvs': pvs}
|
||||||
|
|
||||||
|
|
||||||
class SunOSHardware(Hardware):
|
class SunOSHardware(Hardware):
|
||||||
|
|
Loading…
Reference in a new issue