1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

proposal: ignore_checkmode is a better name

as suggested by @bcoca
This commit is contained in:
René Moser 2016-03-04 11:20:53 +01:00 committed by Rene Moser
parent fa630872d9
commit 130c995208

View file

@ -1,4 +1,4 @@
# Rename always_run to checkmode_run # Rename always_run to ignore_checkmode
*Author*: René Moser <@resmo> *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 ## Solution Proposal
Deprecate `always_run` by rename it to `checkmode_run`: Deprecate `always_run` by rename it to `ignore_checkmode`:
``` ```
- shell: dangerous_cleanup.sh - shell: dangerous_cleanup.sh
when: cleanup == "yes" when: cleanup == "yes"
checkmode_run: yes ignore_checkmode: yes
``` ```