mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 14:05:07 +00:00
crypttab: removes jijna delimiters from example using when (#10079)
The current example includes extra jinja delimiters which result in double-interpretation of the statement. Fixes: #10078 Signed-off-by: Abhijeet Kasurde <Akasurde@redhat.com>
This commit is contained in:
parent
3249a041c0
commit
1936fe5181
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ EXAMPLES = r"""
|
|||
state: opts_present
|
||||
opts: discard
|
||||
loop: '{{ ansible_mounts }}'
|
||||
when: "'/dev/mapper/luks-' in {{ item.device }}"
|
||||
when: "'/dev/mapper/luks-' in item.device"
|
||||
"""
|
||||
|
||||
import os
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue