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