17 lines
387 B
YAML
17 lines
387 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Append to pkg_flatpak
|
|
when:
|
|
- ansible_system == 'Linux'
|
|
notify:
|
|
- Depend flatpak
|
|
changed_when: true
|
|
ansible.builtin.set_fact:
|
|
pkg_flatpak: "{{ pkg_flatpak + [httpie.pkg] }}"
|
|
|
|
- name: Append to pkg_cask
|
|
when:
|
|
- ansible_os_family == 'Darwin'
|
|
ansible.builtin.set_fact:
|
|
pkg_cask: "{{ pkg_cask + [httpie.pkg] }}"
|