Files
fedora-infra_ansible/vars/all/EPEL.yaml
Carl George afa44e37e0 Retire EPEL 10.0
Signed-off-by: Carl George <carlwgeorge@gmail.com>
2025-11-11 16:34:06 -06:00

27 lines
1.0 KiB
YAML

---
# The most recent EPEL major version.
epel_major: 10
# The GPG key ID for this EPEL major version.
epel_key: "e37ed158"
# The EPEL minor version that matches CentOS. Set to false once CentOS reaches
# EOL, i.e. the start of the RHEL maintenance phase.
epel_minor: 2
# The EPEL minor version that has been branched, but doesn't have a matching
# RHEL minor version released yet. Set to false if not available.
epel_branched_minor: false
# The EPEL minor version that matches RHEL. Set to false prior to the RHEL GA.
epel_z_minor: 1
# Assemble a list of EPEL tag names. When a minor version is set to false,
# that list item will be an empty string, which is then removed with select in
# the epel_tags list.
epel_tags_in:
- "{{ '' if epel_minor is false else 'epel{}.{}'.format(epel_major, epel_minor) }}"
- "{{ '' if epel_branched_minor is false else 'epel{}.{}'.format(epel_major, epel_branched_minor) }}"
- "{{ '' if epel_z_minor is false else 'epel{}.{}'.format(epel_major, epel_z_minor) }}"
epel_tags: "{{ epel_tags_in | select }}"