Explanation for "check_mode: no" is confusing (#65777)

When an ansible module, e.g., command, does not support check mode, you can use "check_mode: no" in that task to execute the task in normal mode, even when "--check" flag is used. The current document basically says, use "check_mode: no" to run in check mode, which is confusing and inaccurate.
pull/65782/head
yiskylee 5 years ago committed by Alicia Cozine
parent f1fc5dba92
commit 1f0b5b09cd

@ -47,7 +47,7 @@ existing system, using the `--check` flag to the `ansible` command will report i
bring the system into a desired state. bring the system into a desired state.
This can let you know up front if there is any need to deploy onto the given system. Ordinarily scripts and commands don't run in check mode, so if you This can let you know up front if there is any need to deploy onto the given system. Ordinarily scripts and commands don't run in check mode, so if you
want certain steps to always execute in check mode, such as calls to the script module, disable check mode for those tasks:: want certain steps to execute in normal mode even when the `--check` flag is used, such as calls to the script module, disable check mode for those tasks::
roles: roles:

Loading…
Cancel
Save