Files
ansible-pull/roles/workstation/tasks/software/thunderbird.yml
2021-02-25 09:37:42 +01:00

19 lines
649 B
YAML

- name: software | thunderbird | install package
tags: packages,flatpak,thunderbird,workstation-packages
become_user: jay
flatpak:
name: org.mozilla.thunderbird
method: user
state: present
when: thunderbird is defined and thunderbird == true
- name: software | thunderbird | enable autostart
tags: packages,flatpak,thunderbird,workstation-packages
file:
src: /home/jay/.local/share/flatpak/exports/share/applications/org.mozilla.Thunderbird.desktop
dest: /home/jay/.config/autostart/org.mozilla.Thunderbird.desktop
owner: jay
group: jay
state: link
when: thunderbird is defined and thunderbird == true