반응형
SMALL
조건문은 {{ }} 또는 {% %}과(와) 같은 jinja2 템플릿 구분 기호를 포함하지 않아야 한다.
기존 in tasks
- include: master.yml
when: "{{ master }} == 1"
tags: [ 'master' ]
바꾼 후
- include: master.yml
when: master == 1
tags: [ 'master' ]
반응형
LIST
'Ansible > error' 카테고리의 다른 글
[ansible] [WARNING]: Found variable using reserved name: port (0) | 2021.06.15 |
---|---|
[ansible] Attempting to decrypt but no vault secrets found (0) | 2021.06.15 |
[ansible] Invoking "yum" only once while using a loop via squash_actions is deprecated. (0) | 2021.06.14 |
[ansible] 'chown -R' module (recurse option) (0) | 2021.06.14 |
[ansible] 'yum clean all' module error (0) | 2021.06.14 |