|
|
|
@ -68,6 +68,11 @@ options:
|
|
|
|
|
description:
|
|
|
|
|
- The name of the snapshot volume
|
|
|
|
|
required: false
|
|
|
|
|
pvs:
|
|
|
|
|
version_added: "2.1"
|
|
|
|
|
description:
|
|
|
|
|
- Comma separated list of physical volumes e.g. /dev/sda,/dev/sdb
|
|
|
|
|
required: false
|
|
|
|
|
notes:
|
|
|
|
|
- Filesystems on top of the volume are not resized.
|
|
|
|
|
'''
|
|
|
|
@ -76,6 +81,12 @@ EXAMPLES = '''
|
|
|
|
|
# Create a logical volume of 512m.
|
|
|
|
|
- lvol: vg=firefly lv=test size=512
|
|
|
|
|
|
|
|
|
|
# Create a logical volume of 512m with disks /dev/sda and /dev/sdb
|
|
|
|
|
- lvol: vg=firefly lv=test size=512 pvs=/dev/sda,/dev/sdb
|
|
|
|
|
|
|
|
|
|
# Create cache pool logical volume
|
|
|
|
|
- lvol: vg=firefly lv=lvcache size=512m opts='--type cache-pool'
|
|
|
|
|
|
|
|
|
|
# Create a logical volume of 512g.
|
|
|
|
|
- lvol: vg=firefly lv=test size=512g
|
|
|
|
|
|
|
|
|
@ -119,7 +130,7 @@ def parse_lvs(data):
|
|
|
|
|
for line in data.splitlines():
|
|
|
|
|
parts = line.strip().split(';')
|
|
|
|
|
lvs.append({
|
|
|
|
|
'name': parts[0],
|
|
|
|
|
'name': parts[0].replace('[','').replace(']',''),
|
|
|
|
|
'size': int(decimal_point.match(parts[1]).group(1))
|
|
|
|
|
})
|
|
|
|
|
return lvs
|
|
|
|
@ -158,6 +169,7 @@ def main():
|
|
|
|
|
state=dict(choices=["absent", "present"], default='present'),
|
|
|
|
|
force=dict(type='bool', default='no'),
|
|
|
|
|
snapshot=dict(type='str', default=None),
|
|
|
|
|
pvs=dict(type='str')
|
|
|
|
|
),
|
|
|
|
|
supports_check_mode=True,
|
|
|
|
|
)
|
|
|
|
@ -181,6 +193,12 @@ def main():
|
|
|
|
|
size_opt = 'L'
|
|
|
|
|
size_unit = 'm'
|
|
|
|
|
snapshot = module.params['snapshot']
|
|
|
|
|
pvs = module.params['pvs']
|
|
|
|
|
|
|
|
|
|
if pvs is None:
|
|
|
|
|
pvs = ""
|
|
|
|
|
else:
|
|
|
|
|
pvs = pvs.replace(",", " ")
|
|
|
|
|
|
|
|
|
|
if opts is None:
|
|
|
|
|
opts = ""
|
|
|
|
@ -235,7 +253,7 @@ def main():
|
|
|
|
|
# Get information on logical volume requested
|
|
|
|
|
lvs_cmd = module.get_bin_path("lvs", required=True)
|
|
|
|
|
rc, current_lvs, err = module.run_command(
|
|
|
|
|
"%s --noheadings --nosuffix -o lv_name,size --units %s --separator ';' %s" % (lvs_cmd, unit, vg))
|
|
|
|
|
"%s -a --noheadings --nosuffix -o lv_name,size --units %s --separator ';' %s" % (lvs_cmd, unit, vg))
|
|
|
|
|
|
|
|
|
|
if rc != 0:
|
|
|
|
|
if state == 'absent':
|
|
|
|
@ -275,7 +293,7 @@ def main():
|
|
|
|
|
if snapshot is not None:
|
|
|
|
|
cmd = "%s %s -%s %s%s -s -n %s %s %s/%s" % (lvcreate_cmd, yesopt, size_opt, size, size_unit, snapshot, opts, vg, lv)
|
|
|
|
|
else:
|
|
|
|
|
cmd = "%s %s -n %s -%s %s%s %s %s" % (lvcreate_cmd, yesopt, lv, size_opt, size, size_unit, opts, vg)
|
|
|
|
|
cmd = "%s %s -n %s -%s %s%s %s %s %s" % (lvcreate_cmd, yesopt, lv, size_opt, size, size_unit, opts, vg, pvs)
|
|
|
|
|
rc, _, err = module.run_command(cmd)
|
|
|
|
|
if rc == 0:
|
|
|
|
|
changed = True
|
|
|
|
@ -323,7 +341,7 @@ def main():
|
|
|
|
|
if module.check_mode:
|
|
|
|
|
changed = True
|
|
|
|
|
else:
|
|
|
|
|
cmd = "%s -%s %s%s %s/%s" % (tool, size_opt, size, size_unit, vg, this_lv['name'])
|
|
|
|
|
cmd = "%s -%s %s%s %s/%s %s" % (tool, size_opt, size, size_unit, vg, this_lv['name'], pvs)
|
|
|
|
|
rc, out, err = module.run_command(cmd)
|
|
|
|
|
if "Reached maximum COW size" in out:
|
|
|
|
|
module.fail_json(msg="Unable to resize %s to %s%s" % (lv, size, size_unit), rc=rc, err=err, out=out)
|
|
|
|
@ -353,7 +371,7 @@ def main():
|
|
|
|
|
if module.check_mode:
|
|
|
|
|
changed = True
|
|
|
|
|
else:
|
|
|
|
|
cmd = "%s -%s %s%s %s/%s" % (tool, size_opt, size, size_unit, vg, this_lv['name'])
|
|
|
|
|
cmd = "%s -%s %s%s %s/%s %s" % (tool, size_opt, size, size_unit, vg, this_lv['name'], pvs)
|
|
|
|
|
rc, out, err = module.run_command(cmd)
|
|
|
|
|
if "Reached maximum COW size" in out:
|
|
|
|
|
module.fail_json(msg="Unable to resize %s to %s%s" % (lv, size, size_unit), rc=rc, err=err, out=out)
|
|
|
|
|