0
일부 사전에 하나 이상의 'false'값이 포함되어있을 때만 Ansible 작업을 실행해야한다고합니다.가능 : 사전에 지정된 값이 하나 이상 있는지 확인하는 방법?
예 :
vars:
dict_fonts_installed: { font1: true, font2: true, font3: false }
tasks:
- name: 'Run fc-cache only if at least one of the fonts isn't installed'
command: "fc-cache -f {{ fonts_dir }}"
when: <YOUR ANSWER>