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