Set result to skipped when vol group is missing and lv state=absent
Fixes issue #3714 - lvol module state=absent fails (with error) if the volume group doesn't exist
This commit is contained in:
parent
fea38f44ac
commit
f3384374b9
1 changed files with 4 additions and 1 deletions
|
@ -141,6 +141,9 @@ def main():
|
|||
rc,current_lvs,err = module.run_command("lvs --noheadings -o lv_name,size --units %s --separator ';' %s" % (unit, vg))
|
||||
|
||||
if rc != 0:
|
||||
if state == 'absent':
|
||||
module.exit_json(changed=False,skipped=True,stdout="Skipping because volume group %s does not exist." % vg,stderr=False)
|
||||
else:
|
||||
module.fail_json(msg="Volume group %s does not exist."%vg, rc=rc, err=err)
|
||||
|
||||
changed = False
|
||||
|
|
Loading…
Reference in a new issue