Files
ansible_role_package/tasks/pkgs/thunderbird.yml
Matthew Stobbs aff4fddfb4 fix broken packages
- standardize naming of each pkg append
- move _configured vars to end of block
2025-03-09 21:48:11 -06:00

22 lines
582 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Add thunderbird
when:
- thunderbird_configured is undefined
block:
- 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