Commit 6b2be84a by Michael DeHaan

Merge pull request #3590 from fgtham/lvol_fix

Fix for  Issue #3586:  UnboundedLocalError when removing a logical volume.
parents c3a8b6ff ceff3124
......@@ -96,6 +96,8 @@ def main():
lv = module.params['lv']
size = module.params['size']
state = module.params['state']
size_opt = 'L'
size_unit = 'm'
if state=='present' and not size:
module.fail_json(msg="No size given.")
......@@ -128,9 +130,7 @@ def main():
module.fail_json(msg="Size unit should be one of [bBsSkKmMgGtTpPeE]")
# when no unit, megabytes by default
elif size.isdigit():
size_unit = 'm'
size = int(size)
size_opt = 'L'
else:
module.fail_json(msg="Bad size specification")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment