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