mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix regression in format of lvm facts (#30326)
lvm information should not have leading whitespace in the key names Fixes #30006
This commit is contained in:
committed by
Jordan Borean
parent
60d9a12efd
commit
62f49120cd
@@ -671,7 +671,7 @@ class LinuxHardware(Hardware):
|
||||
if vgs_path:
|
||||
rc, vg_lines, err = self.module.run_command('%s %s' % (vgs_path, lvm_util_options))
|
||||
for vg_line in vg_lines.splitlines():
|
||||
items = vg_line.split(',')
|
||||
items = vg_line.strip().split(',')
|
||||
vgs[items[0]] = {'size_g': items[-2],
|
||||
'free_g': items[-1],
|
||||
'num_lvs': items[2],
|
||||
@@ -684,7 +684,7 @@ class LinuxHardware(Hardware):
|
||||
if lvs_path:
|
||||
rc, lv_lines, err = self.module.run_command('%s %s' % (lvs_path, lvm_util_options))
|
||||
for lv_line in lv_lines.splitlines():
|
||||
items = lv_line.split(',')
|
||||
items = lv_line.strip().split(',')
|
||||
lvs[items[0]] = {'size_g': items[3], 'vg': items[1]}
|
||||
|
||||
pvs_path = self.module.get_bin_path('pvs')
|
||||
@@ -693,7 +693,7 @@ class LinuxHardware(Hardware):
|
||||
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(',')
|
||||
items = pv_line.strip().split(',')
|
||||
pvs[self._find_mapper_device_name(items[0])] = {
|
||||
'size_g': items[4],
|
||||
'free_g': items[5],
|
||||
|
||||
Reference in New Issue
Block a user