mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
22 lines
611 B
YAML
22 lines
611 B
YAML
![]() |
---
|
||
|
|
||
|
- name: Configure SCL RH repository
|
||
|
yum_repository:
|
||
|
name: centos-sclo-rh
|
||
|
file: centos-scl
|
||
|
description: SCLo rh
|
||
|
baseurl: http://mirror.centos.org/centos/$releasever/sclo/$basearch/rh/
|
||
|
gpgcheck: True
|
||
|
gpgkey: https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-SCLo
|
||
|
tags: repo
|
||
|
|
||
|
- name: Configure community SCL repository
|
||
|
yum_repository:
|
||
|
name: centos-sclo
|
||
|
file: centos-scl
|
||
|
description: SCLo
|
||
|
baseurl: http://mirror.centos.org/centos/$releasever/sclo/$basearch/sclo/
|
||
|
gpgcheck: True
|
||
|
gpgkey: https://www.centos.org/keys/RPM-GPG-KEY-CentOS-SIG-SCLo
|
||
|
tags: repo
|