Matej Focko
044d0e42ab
* Do not use Copr repo for AlmaLinux * Make a generic install action for Helix from official repositories Signed-off-by: Matej Focko <me@mfocko.xyz>
13 lines
265 B
YAML
13 lines
265 B
YAML
---
|
|
- name: Enable the Copr
|
|
community.general.copr:
|
|
name: varlad/helix
|
|
state: enabled
|
|
when: ansible_distribution not in ("AlmaLinux")
|
|
become: true
|
|
|
|
- name: Install the Helix
|
|
ansible.builtin.package:
|
|
name: helix
|
|
state: present
|
|
become: true
|