finished list, now to test them all

This commit is contained in:
Matthew Stobbs
2026-04-13 13:11:50 -06:00
parent 4a44382b01
commit 633a8cad84
163 changed files with 210 additions and 4672 deletions

View File

@@ -1,4 +1,10 @@
# 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:
@@ -6,6 +12,7 @@
methods:
- source
- system
pkgname: zoxide
cargo:
name: zoxide
pkg_deps:
@@ -27,7 +34,8 @@
block:
- name: Append zoxide to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['zoxide'] }}"
pkg_sys: "{{ pkg_sys + [zoxide.pkgname] }}"
zoxide_install: "{{ zoxide_imethod }}={{ zoxide.pkgname }}"
- name: Configure zoxide cargo install
when:
@@ -35,8 +43,9 @@
block:
- name: Set zoxide cargo facts
ansible.builtin.set_fact:
zoxide_cargo_install: "{{ zoxide.cargo }}"
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_imethod } ) }}"
__configured: "{{ __configured | combine( { 'zoxide': zoxide_install } ) }}"