You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
833 B
31 lines
833 B
5 years ago
|
---
|
||
|
- name: Configure base repositories
|
||
|
yum_repository:
|
||
|
file: CentOS-{{ item.repo }}
|
||
|
description: "Centos - {{ item.repo }}"
|
||
|
name: "{{ item.repo }}"
|
||
|
baseurl: http://mirror.centos.org/$contentdir/$releasever/{{ item.repo }}/$basearch/os/
|
||
|
gpgcheck: True
|
||
|
gpgkey: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial
|
||
|
enabled: "{{ item.enabled | default(True) }}"
|
||
|
loop:
|
||
|
- repo: BaseOS
|
||
|
- repo: AppStream
|
||
|
- repo: Extras
|
||
|
- repo: cr
|
||
|
enabled: False
|
||
|
- repo: centosplus
|
||
|
enabled: False
|
||
|
- repo: PowerTools
|
||
|
enabled: False
|
||
|
- repo: fasttrack
|
||
|
enabled: False
|
||
|
tags: repo
|
||
|
|
||
|
- name: Remove Base file
|
||
|
file: path=/etc/yum.repos.d/{{ item }}.repo state=absent
|
||
|
loop:
|
||
|
- CentOS-Base # Replaced with CentOS-BaseOS
|
||
|
- CentOS-CR # Replaced with CentOS-cr
|
||
|
tags: repo
|