- creating src packages when things can't be installed via actual system package - neovim srcpkg is being worked on now
17 lines
382 B
YAML
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
|