13 lines
378 B
YAML
13 lines
378 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Set method for httpie
|
|
ansible.builtin.set_fact:
|
|
httpie:
|
|
method: "{{ pkgconfig.httpie.method[ansible_distribution] | default(pkgconfig.httpie.method.default) }}"
|
|
|
|
- name: Set config for httpie
|
|
ansible.builtin.set_fact:
|
|
httpie:
|
|
method: "{{ httpie.method }}"
|
|
pkg: "{{ pkgconfig.httpie[httpie.method] }}"
|