mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Removing skipped=True from result when using creates= and removes=
Fixes #8645
This commit is contained in:
@@ -138,7 +138,6 @@ def main():
|
|||||||
module.exit_json(
|
module.exit_json(
|
||||||
cmd=args,
|
cmd=args,
|
||||||
stdout="skipped, since %s exists" % v,
|
stdout="skipped, since %s exists" % v,
|
||||||
skipped=True,
|
|
||||||
changed=False,
|
changed=False,
|
||||||
stderr=False,
|
stderr=False,
|
||||||
rc=0
|
rc=0
|
||||||
@@ -153,7 +152,6 @@ def main():
|
|||||||
module.exit_json(
|
module.exit_json(
|
||||||
cmd=args,
|
cmd=args,
|
||||||
stdout="skipped, since %s does not exist" % v,
|
stdout="skipped, since %s does not exist" % v,
|
||||||
skipped=True,
|
|
||||||
changed=False,
|
changed=False,
|
||||||
stderr=False,
|
stderr=False,
|
||||||
rc=0
|
rc=0
|
||||||
|
|||||||
Reference in New Issue
Block a user