26 lines
715 B
YAML
26 lines
715 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Set zoxide default facts # {{{
|
|
ansible.builtin.set_fact:
|
|
zoxide:
|
|
methods:
|
|
- system
|
|
# }}}
|
|
- name: Configure zoxide
|
|
when:
|
|
- "'zoxide' not in __configured"
|
|
block:
|
|
- name: Set zoxide install method
|
|
when:
|
|
- zoxide_imethod is undefined
|
|
ansible.builtin.set_fact:
|
|
zoxide_imethod: "{{ imethod if imethod in zoxide.methods else zoxide.methods[0] }}"
|
|
|
|
- name: Append zoxide to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + ['zoxide'] }}"
|
|
|
|
- name: Set zoxide_configured
|
|
ansible.builtin.set_fact:
|
|
__configured: "{{ __configured | combine( { 'zoxide': zoxide_imethod } ) }}"
|