16 lines
406 B
YAML
16 lines
406 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add yazi-fm
|
|
when:
|
|
- yazi_fm_configured is undefined
|
|
block:
|
|
- name: Append yazi-fm to pkg_cargo
|
|
# notify: Depend cargo
|
|
# changed_when: true
|
|
ansible.builtin.set_fact:
|
|
pkg_cargo: "{{ pkg_cargo + ['yazi-fm', 'yazi-cli'] }}"
|
|
|
|
- name: Set yazi-fm_configured
|
|
ansible.builtin.set_fact:
|
|
yazi_fm_configured: true
|