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

Revert "Fixes #4771 Add 1.4.x example of registered var properties to the docsite"

This reverts commit dc74e700ce.
This commit is contained in:
James Tanner 2013-11-08 10:30:45 -05:00
parent dc74e700ce
commit 4169f1b07c

View file

@ -144,21 +144,16 @@ The following tasks are illustrative of how filters can be used with conditional
- debug: msg="it failed"
when: result|failed
# in most cases you'll want a handler, but if you want to do something right now, this is nice
- debug: msg="it changed"
when: result|changed
- debug: msg="it succeeded"
when: result|success
- debug: msg="it was skipped"
when: result|skipped
# in most cases you'll want a handler, but if you want to do something right now, this is nice
- debug: msg="it changed"
when: result|changed
# in 1.4 and above, properties of registered variables can be called as well;
# eliminating the need to use filters in some cases.
- debug: msg="it changed"
when: result.changed
.. _forcing_variables_to_be_defined:
Forcing Variables To Be Defined