Files
ansible_role_package/tasks/pkgs/RedHat/zoxide.yml
Matthew Stobbs c62d4e1977 restructuring for easier maintenance
- creating src packages when things can't be installed via
  actual system package
- neovim srcpkg is being worked on now
2025-01-19 14:10:41 -07:00

17 lines
382 B
YAML

---
- name: Enable copr repo for zoxide
become: true
when: ansible_distribution != "Fedora"
community.general.copr:
name: atim/zoxide
state: enabled
chroot: "{{ coprChroot[ansible_distribution].chroot | default(omit) }}"
- name: append to pkgs
set_fact:
syspkgs: "{{ (syspkgs | default([])) + [ 'zoxide' ] }}"
tags:
- RedHat
- linux
- package