14 lines
296 B
YAML
14 lines
296 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add jq
|
|
when:
|
|
- jq_configured is undefined
|
|
block:
|
|
- name: Append to pkgs
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + ['jq'] }}"
|
|
|
|
- name: Set jq_configured
|
|
ansible.builtin.set_fact:
|
|
jq_configured: true
|