summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorEric L <ericzolf@users.noreply.github.com>2020-05-06 18:47:52 +0200
committerGitHub <noreply@github.com>2020-05-06 18:47:52 +0200
commit852906fe7f44d832237d5d42fc5b3c38e6a25c59 (patch)
tree285b43acb9aa3afbea23a39a0fa72e9be2afbfaf /lib
parentOrder my dicts (#58000) (diff)
downloadansible-852906fe7f44d832237d5d42fc5b3c38e6a25c59.tar.xz
ansible-852906fe7f44d832237d5d42fc5b3c38e6a25c59.zip
Make description of removes option of command module clearer (hopefully) (#68097)
* Improves description of removes option in command module Co-authored-by: Eric L <android@lavar.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/modules/commands/command.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/modules/commands/command.py b/lib/ansible/modules/commands/command.py
index 4cdba0de5c..9b673140e4 100644
--- a/lib/ansible/modules/commands/command.py
+++ b/lib/ansible/modules/commands/command.py
@@ -49,11 +49,11 @@ options:
creates:
type: path
description:
- - A filename or (since 2.0) glob pattern. If it already exists, this step B(won't) be run.
+ - A filename or (since 2.0) glob pattern. If a matching file already exists, this step B(won't) be run.
removes:
type: path
description:
- - A filename or (since 2.0) glob pattern. If it already exists, this step B(will) be run.
+ - A filename or (since 2.0) glob pattern. If a matching file exists, this step B(will) be run.
version_added: "0.8"
chdir:
type: path