mirror of
https://github.com/thegeeklab/ansible-later.git
synced 2024-11-25 14:20:45 +00:00
include only jinja2 strings if candidate is a template
This commit is contained in:
parent
7cc976a3b2
commit
842b6b96c8
@ -6,6 +6,7 @@ from collections import defaultdict
|
|||||||
|
|
||||||
from ansiblelater.command.candidates import Error
|
from ansiblelater.command.candidates import Error
|
||||||
from ansiblelater.command.candidates import Result
|
from ansiblelater.command.candidates import Result
|
||||||
|
from ansiblelater.command.candidates import Template
|
||||||
from ansiblelater.utils import count_spaces
|
from ansiblelater.utils import count_spaces
|
||||||
from ansiblelater.utils.rulehelper import get_normalized_tasks
|
from ansiblelater.utils.rulehelper import get_normalized_tasks
|
||||||
from ansiblelater.utils.rulehelper import get_normalized_yaml
|
from ansiblelater.utils.rulehelper import get_normalized_yaml
|
||||||
@ -193,6 +194,18 @@ def check_compare_to_literal_bool(candidate, settings):
|
|||||||
description = "use `when: var` rather than `when: var == True` " \
|
description = "use `when: var` rather than `when: var == True` " \
|
||||||
"(or conversely `when: not var`)"
|
"(or conversely `when: not var`)"
|
||||||
|
|
||||||
|
if isinstance(candidate, Template):
|
||||||
|
matches = []
|
||||||
|
braces = re.compile("({{|{%)(.*?)(}}|%})")
|
||||||
|
|
||||||
|
for i, line in yamllines:
|
||||||
|
match = braces.findall(line)
|
||||||
|
if match:
|
||||||
|
for item in match:
|
||||||
|
matches.append((i, item[1]))
|
||||||
|
|
||||||
|
yamllines = matches
|
||||||
|
|
||||||
literal_bool_compare = re.compile("[=!]= ?(True|true|False|false)")
|
literal_bool_compare = re.compile("[=!]= ?(True|true|False|false)")
|
||||||
|
|
||||||
if not errors:
|
if not errors:
|
||||||
|
Loading…
Reference in New Issue
Block a user