mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
3bf1edfd96
commit
f6a08ce1ba
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,10 @@ As of Ansible 1.8, it is possible to use the default filter to omit variables an
|
|||
For the first two files in the list, the default mode will be determined by the umask of the system as the `mode=`
|
||||
parameter will not be sent to the file module while the final file will receive the `mode=0444` option.
|
||||
|
||||
.. note:: If you are "chaining" additional filters after the `default(omit)` filter, you should instead do something like this:
|
||||
`"{{ foo | default(None) | some_filter or omit }}"`. In this example, the default `None` (python null) value will cause the
|
||||
later filters to fail, which will trigger the `or omit` portion of the logic. Using omit in this manner is very specific to
|
||||
the later filters you're chaining though, so be prepared for some trial and error if you do this.
|
||||
|
||||
.. _list_filters:
|
||||
|
||||
|
|
Loading…
Reference in a new issue