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