Commit 8648fa17 by James Cammarata

Removing skipped=True from result when using creates= and removes=

Fixes #8645
parent ca6db40c
......@@ -138,7 +138,6 @@ def main():
module.exit_json(
cmd=args,
stdout="skipped, since %s exists" % v,
skipped=True,
changed=False,
stderr=False,
rc=0
......@@ -153,7 +152,6 @@ def main():
module.exit_json(
cmd=args,
stdout="skipped, since %s does not exist" % v,
skipped=True,
changed=False,
stderr=False,
rc=0
......
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