Files
ansible_role_package/tasks/pkgs/bitwarden.yml
Matthew Stobbs b2a8e41f3d complete more pkgs
- bitwarden is configured to install the cask on macos and the appimage
  on linux
- dbeaver is configured using the flatpak installation
- added handling of flatpaks
2025-02-07 13:34:50 -07:00

17 lines
483 B
YAML

---
- ansible.builtin.include_vars:
file: bitwarden.yml
name: _bitwarden
- ansible.builtin.set_fact:
pkgconfig_bitwarden: "{{ _bitwarden | ansible.builtin.combine(pkgconfig.bitwarden) }}"
- name: append to srcpkgs
ansible.builtin.set_fact:
syspkgs: "{{ srcpkgs + [ 'bitwarden' ] }}"
when: ansible_os_family != 'Darwin'
- name: append to caskpkgs
ansible.builtin.set_fact:
caskpkgs: "{{ caskpkgs + [ 'bitwarden' ] }}"
when: ansible_os_family == 'Darwin'