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