Files
Matthew Stobbs 1eae6eb0db fixed remaining issues
added pipx and ripgrep back. not sure where they went in the first place
2026-04-13 15:19:33 -06:00

52 lines
1.4 KiB
YAML

# vim: set filetype=yaml.ansible :
#
## Package: zoxide
## Description: cli path bookmark manager
## Version: latest
## Methods: [source, system]
## Helpers: cargo
---
- name: Set zoxide default facts # {{{
ansible.builtin.set_fact:
zoxide:
methods:
- source
- system
pkgname: zoxide
cargo:
name: zoxide
pkg_deps:
- cargo
# }}}
- 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: Configure zoxide system install
when:
- zoxide_imethod == 'system'
block:
- name: Append zoxide to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + [zoxide.pkgname] }}"
zoxide_install: "{{ zoxide_imethod }}={{ zoxide.pkgname }}"
- name: Configure zoxide cargo install
when:
- zoxide_imethod == 'source'
block:
- name: Set zoxide cargo facts
ansible.builtin.set_fact:
pkg_cargo: "{{ pkg_cargo + [zoxide.cargo] }}"
zoxide_install: "{{ zoxide_imethod }}={{ zoxide.cargo }}"
- name: Set zoxide_configured
ansible.builtin.set_fact:
__configured: "{{ __configured | combine( { 'zoxide': zoxide_install } ) }}"