Ansible Playbook zur Installation von Thunderbird auf Ubuntu via Snap
Dies installiert die aktuellste Version von Thunderbird aus dem Snap Store. Wenn Thunderbird bereits installiert ist, wird es gar nichts tun.
thunderbird_playbook.yaml
---
- name: Install Thunderbird
hosts: all
become: true
tasks:
- name: Ensure snapd is installed
apt:
name: snapd
state: present
update_cache: yes
when: ansible_os_family == "Debian"
- name: Install Thunderbird snap
snap:
name: thunderbird
state: present
classic: trueVerwenden Sie es so:
run_thunderbird_playbook.sh
ansible-playbook -i thunderbird.yamlIf this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow