summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2016-03-06 09:58:52 -0500
committerBrian Coca <bcoca@ansible.com>2016-03-06 09:58:52 -0500
commit1b96454d8e4b13cc1882545f67bd7a22d5498161 (patch)
tree48112e35948498853936195c4c696ed57b5de0be /docs
parent0e17a6f03672c1403c5dbb41f8c3b6f41e4513c0 (diff)
parent130c995208d77ee9703e03d5fcba9ac7cb635588 (diff)
downloadansible-1b96454d8e4b13cc1882545f67bd7a22d5498161.tar.gz
Merge pull request #14796 from resmo/patch-3
prop: ignore_checkmode is a better name
Diffstat (limited to 'docs')
-rw-r--r--docs/proposals/rename_always_run.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/proposals/rename_always_run.md b/docs/proposals/rename_always_run.md
index 6adcd508f4..e3c05d7a8d 100644
--- a/docs/proposals/rename_always_run.md
+++ b/docs/proposals/rename_always_run.md
@@ -1,4 +1,4 @@
-# Rename always_run to checkmode_run
+# Rename always_run to ignore_checkmode
*Author*: René Moser <@resmo>
@@ -25,10 +25,10 @@ You have a conditional but also a word that says `always`. This is a conflict in
## Solution Proposal
-Deprecate `always_run` by rename it to `checkmode_run`:
+Deprecate `always_run` by rename it to `ignore_checkmode`:
```
- shell: dangerous_cleanup.sh
when: cleanup == "yes"
- checkmode_run: yes
+ ignore_checkmode: yes
```