fix lvol module to properly query the size of logical volumes

This commit is contained in:
Misho Krastev 2015-01-05 01:52:20 -08:00 committed by Matt Clay
parent e00462712d
commit fcf8223dfe

View file

@ -154,7 +154,7 @@ def main():
lvs_cmd = module.get_bin_path("lvs", required=True)
rc, current_lvs, err = module.run_command(
"%s --noheadings -o lv_name,size --units %s --separator ';' %s" % (lvs_cmd, unit, vg))
"lvs --noheadings --nosuffix -o lv_name,size --units %s --separator ';' %s" % (unit, vg))
if rc != 0:
if state == 'absent':