Files
ansible_role_package/tasks/pkgs/httpie.yml
2025-02-21 22:59:24 -07:00

16 lines
372 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.httpie.Httpie'] }}"
- name: Append to pkg_cask
when:
- ansible_os_family == 'Darwin'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + ['httpie'] }}"