Ansible/error

[ansible] conditional statements should not include jinja2 templating delimiters such as {{ }} or {% %}.

nang. 2021. 6. 14. 21:43
반응형
SMALL

조건문은 {{ }} 또는 {% %}과(와) 같은 jinja2 템플릿 구분 기호를 포함하지 않아야 한다.

 

기존 in tasks

includemaster.yml

    when"{{ master }} == 1"

    tags: [ 'master' ]

 

바꾼 후

  - includemaster.yml

    whenmaster == 1

    tags: [ 'master' ]

반응형
LIST