fixing up formatting and style

This commit is contained in:
Matthew Stobbs
2026-03-03 12:42:22 -07:00
parent 30313d2858
commit 24a4ec17ec
16 changed files with 236 additions and 2444 deletions

View File

@@ -1,11 +1,19 @@
# vim: set filetype=yaml.ansible :
---
- name: Add zoxide
- name: Configure zoxide
when:
- "'zoxide' not in __configured"
block:
- name: Set zoxied install method
when:
- zoxide_install_method is undefined
ansible.builtin.set_fact:
zoxide_install_method: "{{ install_method if intall_method in zoxide_install_methods else zoxide_install_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:
zoxide_configured: true
__configured: "{{ __configured | combine( { 'zoxide': true } ) }}"