forked from ISTI-ansible-roles/ansible-roles
16 lines
535 B
YAML
16 lines
535 B
YAML
---
|
|
- name: Install the epel repository
|
|
yum: name={{ centos_epel_repo_url }} state={{ centos_pkg_state }}
|
|
when: centos_install_epel | bool
|
|
tags: [ 'centos', 'repo' ]
|
|
|
|
- name: Install the SCL release to access the latest versions of some software
|
|
yum: name=centos-release-scl state=present
|
|
when: centos_install_release_scl | bool
|
|
tags: [ 'centos', 'scl', 'repo' ]
|
|
|
|
- name: Install the elrepo repository
|
|
yum: name={{ rh_elrepo_repo_url }} state=present
|
|
when: rh_install_elrepo | bool
|
|
tags: [ 'centos', 'rhel', 'repo' ]
|