Commit 4169f1b0 by James Tanner

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

This reverts commit dc74e700.
parent dc74e700
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment