Commit e32a6110 by James Cammarata

Removing skipped=True so the task is just marked as not-changed

parent d98ad7b3
......@@ -142,7 +142,7 @@ def main():
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)
module.exit_json(changed=False,stdout="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)
......
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