mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-19 15:21:27 +00:00
fix fatal error when removing logical volumes
This commit is contained in:
@@ -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")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user