Merge pull request #182 from misho-kr/devel

fix lvol module to properly query the size of logical volumes
This commit is contained in:
Brian Coca 2015-03-06 11:53:33 -05:00
commit 41ddb689db

View file

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