Ansible playbook to install Bitwarden client via Snap
---
- name: Install Bitwarden Password Manager
hosts: all
become: true
tasks:
- name: Ensure snapd is installed
apt:
name:
- snapd
- snap
state: present
when: ansible_os_family == "Debian"
- name: Install Bitwarden snap
snap:
name: bitwarden
state: present
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow