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

Fixes #8645
This commit is contained in:
James Cammarata 2014-08-19 09:09:13 -05:00
parent ca6db40cb4
commit 8648fa175c

View file

@ -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