mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
YAML requires quoting the entire value when it starts with a quote
Fixes #2280.
This commit is contained in:
parent
de09e9dade
commit
b130716b61
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ to a task include statement as below. Note this does not work with playbook inc
|
|||
get evaluated, but the conditional is applied to each and every task::
|
||||
|
||||
- include: tasks/sometasks.yml
|
||||
when_string: 'reticulating splines' in $output
|
||||
when_string: "'reticulating splines' in $output"
|
||||
|
||||
Conditional Imports
|
||||
```````````````````
|
||||
|
|
Loading…
Reference in a new issue