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

Clarify how only_if works, also combined with with_items

- The old documentation stated not to quote the variable in the function, which is obviously wrong. When using lists or integers, we have to quote otherwise the startswith() method will trip over its non-existence.
- It was unclear that the only_if statement is processed for each item when doing with_items, so I added an example making it crystal clear how this can be used in your advantage (or why a non-existing list variable can break your logic if you expected the only_if to be processed once before running the task)
This commit is contained in:
Dag Wieers 2012-10-22 12:25:08 +02:00
parent 52f2ed5fe1
commit 7d990fa167

View file

@ -272,12 +272,20 @@ In Ansible 0.8, a few shortcuts are available for testing whether a variable is
tasks:
- action: command echo hi
only_if: is_set($some_variable)
only_if: is_set('$some_variable')
There is a matching 'is_unset' that works the same way. Do not quote the variables inside the function.
There is a matching 'is_unset' that works the same way. Quoting the variable inside the function is mandatory.
While only_if is a pretty good option for advanced users, it exposes more guts of the engine than we'd like, and
we can do better. In 0.9, we will be adding 'when', which will be like a syntactic sugar for only_if and hide
When combining `only_if` with `with_items`, be aware that the `only_if` statement is processed for each item.
This is a deliberate design::
tasks:
- action: command echo $item
with_item: [ 0, 2, 4, 6, 8, 10 ]
only_if: "$item > 5"
While `only_if` is a pretty good option for advanced users, it exposes more guts of the engine than we'd like, and
we can do better. In 0.9, we will be adding `when`, which will be like a syntactic sugar for `only_if` and hide
this level of complexity -- it will numerous built in operators.
Conditional Imports