Files
ansible_role_package/tasks/pkgs/dbeaver.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

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'