Então, no meu código, eu tenho uma tarefa
- name: cool task
shell: 'touch iamnotcool.txt'
when: me.cool is not defined
e meus vars parecem
---
me:
stumped: yes
Então, quando eu executo a tarefa, ela volta com o seguinte erro
{"failed": true, "msg": "The conditional check 'me.cool' failed. The error was: error while evaluating conditional (me.cool): 'dict object' has no attribute 'cool'.
ansible
ansible-playbook
conditional
Luis F Hernandez
fonte
fonte
when: is_installed.rc is defined and is_installed.rc == 0
Isso não funciona:when: is_installed.rc is defined
\n
when is_installed.rc == 0
Você pode evitar que 'dict object' não tenha nenhum atributo usando a sintaxe jinja2 selectattr () como em:
ideia obtida de Michael Hoglan em https://groups.google.com/forum/#!topic/ansible-project/8XJkHQgttLA
fonte