mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-26 07:05:19 +02:00
21 lines
798 B
YAML
21 lines
798 B
YAML
---
|
|
|
|
- name: Configure EPEL repository
|
|
yum_repository:
|
|
name: epel
|
|
description: "Extra Package for Enterprise Linux"
|
|
baseurl: https://fr2.rpmfind.net/linux/epel/$releasever/Everything/$basearch https://mirror.in2p3.fr/pub/epel/$releasever/Everything/$basearch
|
|
gpgcheck: True
|
|
gpgkey: https://mirror.in2p3.fr/pub/epel/RPM-GPG-KEY-EPEL-8
|
|
exclude: dehydrated
|
|
tags: repo
|
|
|
|
- name: Config EPEL Modular repository
|
|
yum_repository:
|
|
name: epel-modular
|
|
description: "Extra Packages for Enterprise Linux Modular $releasever - $basearch"
|
|
baseurl: https://fr2.rpmfind.net/linux/epel/$releasever/Modular/$basearch https://mirror.in2p3.fr/pub/epel/$releasever/Modular/$basearch
|
|
gpgcheck: True
|
|
gpgkey: https://mirror.in2p3.fr/pub/epel/RPM-GPG-KEY-EPEL-8
|
|
tags: repo
|