16 lines
391 B
YAML
16 lines
391 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Append to pkg_flatpak
|
|
when:
|
|
- ansible_system == 'Linux'
|
|
notify:
|
|
- Depend flatpak
|
|
ansible.builtin.set_fact:
|
|
pkg_flatpak: "{{ pkg_flatpak + ['io.dbeaver.DBeaverCommunity'] }}"
|
|
|
|
- name: Append to pkg_cask
|
|
when:
|
|
- ansible_system == 'Darwin'
|
|
ansible.builtin.set_fact:
|
|
pkg_cask: "{{ pkg_cask + ['dbeaver-community'] }}"
|