# vim: set filetype=yaml.ansible : --- - name: Append thunderbird to pkg_sys when: - ansible_system == 'Linux' ansible.builtin.set_fact: pkg_sys: "{{ pkg_sys + ['thunderbird'] }}" - name: Append thunderbird to pkg_cask when: - ansible_system == 'Darwin' ansible.builtin.set_fact: pkg_cask: "{{ pkg_cask + ['thunderbird'] }}" - name: Set thunderbird_configured ansible.builtin.set_fact: thunderbird_configured: true