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
Take a look at the playbooks to avoid below situation.
- set_fact:
test: true
- block:
- debug: var=test
- set_fact:
test: false
- debug: var=test
when: test
- debug:
msg: "The above second debug will not run."
when: not test