31 lines
751 B
YAML
31 lines
751 B
YAML
---
|
|
# tasks file for epel
|
|
|
|
- name: install epel
|
|
block:
|
|
- name: install epel gpg key
|
|
ansible.builtin.rpm_key:
|
|
key: "{{ epel_gpg_key }}"
|
|
state: present
|
|
|
|
- name: install epel-release
|
|
ansible.builtin.package:
|
|
name: "{{ epel_url }}"
|
|
state: present
|
|
notify:
|
|
- update package cache
|
|
|
|
- name: install epel-next-release
|
|
ansible.builtin.package:
|
|
name: "{{ epel_next_url }}"
|
|
state: present
|
|
when:
|
|
- epel_next
|
|
notify:
|
|
- update package cache
|
|
when:
|
|
- (ansible_distribution == "Amazon" and
|
|
ansible_distribution_major_version == "2") or
|
|
(ansible_os_family == "RedHat" and
|
|
ansible_distribution_major_version in [ "7", "8" ])
|