You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running an ansible playbook with --check enabled, the task ome_application_network_proxy is skipped entirely, instead of running and reporting if it would change something.
Typically with check mode, a task still executes and reports OK or Changed if the task would make changes, but does not actually make any changes. I use this to ensure that things are set as desired or to understand if they will be changing when I run the task for real.
Since this task is skipped entirely, I'm unable to determine ahead of time if anything would be changed. I could add
check_mode: no
which would always run the task, even if check mode is specified, but it would also make the change, which is undesireable.
The text was updated successfully, but these errors were encountered:
When running an ansible playbook with --check enabled, the task ome_application_network_proxy is skipped entirely, instead of running and reporting if it would change something.
Typically with check mode, a task still executes and reports OK or Changed if the task would make changes, but does not actually make any changes. I use this to ensure that things are set as desired or to understand if they will be changing when I run the task for real.
Since this task is skipped entirely, I'm unable to determine ahead of time if anything would be changed. I could add
check_mode: no
which would always run the task, even if check mode is specified, but it would also make the change, which is undesireable.
The text was updated successfully, but these errors were encountered: