- 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
16 lines
414 B
YAML
16 lines
414 B
YAML
# TODO: implement
|
|
---
|
|
- ansible.builtin.include_tasks:
|
|
file: pkgs/flatpak.yml
|
|
when: pkgconfig_flatpkak is undefined
|
|
|
|
- name: append to flatpkgs
|
|
ansible.builtin.set_fact:
|
|
flatpkgs: "{{ flatpkgs + [ 'dbeaver' ] }}"
|
|
when: ansible_os_family != 'Darwin'
|
|
|
|
- name: append to caskpkgs
|
|
ansible.builtin.set_fact:
|
|
caskpkgs: "{{ caskpkgs + [ 'dbeaver-community' ] }}"
|
|
when: ansible_os_family == 'Darwin'
|