- 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
17 lines
483 B
YAML
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'
|