16 lines
368 B
YAML
16 lines
368 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Append to pkg_flatpak
|
|
when:
|
|
- pgadmin.method == 'flatpak'
|
|
notify:
|
|
- Depend flatpak
|
|
ansible.builtin.set_fact:
|
|
pkg_flatpak: "{{ pkg_flatpak + [pgadmin.flatpak] }}"
|
|
|
|
- name: Append to pkg_cask
|
|
when:
|
|
- pgadmin.method == 'cask'
|
|
ansible.builtin.set_fact:
|
|
pkg_cask: "{{ pkg_cask + pgadmin.pkgs }}"
|