mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
bugfix: missing path for lvm facts
This commit is contained in:
parent
8e30e3791e
commit
1ea1b9fb13
1 changed files with 4 additions and 2 deletions
|
@ -1073,12 +1073,14 @@ class LinuxHardware(Hardware):
|
||||||
""" Get LVM Facts if running as root and lvm utils are available """
|
""" Get LVM Facts if running as root and lvm utils are available """
|
||||||
|
|
||||||
if os.getuid() == 0 and module.get_bin_path('vgs'):
|
if os.getuid() == 0 and module.get_bin_path('vgs'):
|
||||||
|
vgs_path = module.get_bin_path('vgs')
|
||||||
|
lvs_path = module.get_bin_path('lvs')
|
||||||
lvm_util_options = '--noheadings --nosuffix --units g'
|
lvm_util_options = '--noheadings --nosuffix --units g'
|
||||||
|
|
||||||
#vgs fields: VG #PV #LV #SN Attr VSize VFree
|
#vgs fields: VG #PV #LV #SN Attr VSize VFree
|
||||||
vgs={}
|
vgs={}
|
||||||
rc, vg_lines, err = module.run_command(
|
rc, vg_lines, err = module.run_command(
|
||||||
'vgs %s' % lvm_util_options)
|
'%s %s' % (vgs_path, lvm_util_options))
|
||||||
for vg_line in vg_lines.splitlines():
|
for vg_line in vg_lines.splitlines():
|
||||||
items = vg_line.split()
|
items = vg_line.split()
|
||||||
vgs[items[0]] = {'size_g':items[-2],
|
vgs[items[0]] = {'size_g':items[-2],
|
||||||
|
@ -1090,7 +1092,7 @@ class LinuxHardware(Hardware):
|
||||||
#LV VG Attr LSize Pool Origin Data% Move Log Copy% Convert
|
#LV VG Attr LSize Pool Origin Data% Move Log Copy% Convert
|
||||||
lvs = {}
|
lvs = {}
|
||||||
rc, lv_lines, err = module.run_command(
|
rc, lv_lines, err = module.run_command(
|
||||||
'lvs %s' % lvm_util_options)
|
'%s %s' % (lvs_path, lvm_util_options))
|
||||||
for lv_line in lv_lines.splitlines():
|
for lv_line in lv_lines.splitlines():
|
||||||
items = lv_line.split()
|
items = lv_line.split()
|
||||||
lvs[items[0]] = {'size_g': items[3],
|
lvs[items[0]] = {'size_g': items[3],
|
||||||
|
|
Loading…
Reference in a new issue