forked from ISTI-ansible-roles/ansible-roles
Merge branch 'master' of adellam/ansible-roles into master
This commit is contained in:
commit
c3ce6e6fb1
|
@ -1,15 +1,15 @@
|
||||||
---
|
---
|
||||||
- name: Install the epel repository
|
- name: Install the epel repository
|
||||||
yum: name={{ centos_epel_repo_url }} state={{ centos_pkg_state }}
|
yum: name={{ centos_epel_repo_url }} state={{ centos_pkg_state }}
|
||||||
when: centos_install_epel
|
when: centos_install_epel | bool
|
||||||
tags: [ 'centos', 'repo' ]
|
tags: [ 'centos', 'repo' ]
|
||||||
|
|
||||||
- name: Install the SCL release to access the latest versions of some software
|
- name: Install the SCL release to access the latest versions of some software
|
||||||
yum: name=centos-release-scl state=present
|
yum: name=centos-release-scl state=present
|
||||||
when: centos_install_release_scl
|
when: centos_install_release_scl | bool
|
||||||
tags: [ 'centos', 'scl', 'repo' ]
|
tags: [ 'centos', 'scl', 'repo' ]
|
||||||
|
|
||||||
- name: Install the elrepo repository
|
- name: Install the elrepo repository
|
||||||
yum: name={{ rh_elrepo_repo_url }} state=present
|
yum: name={{ rh_elrepo_repo_url }} state=present
|
||||||
when: rh_install_elrepo
|
when: rh_install_elrepo | bool
|
||||||
tags: [ 'centos', 'rhel', 'repo' ]
|
tags: [ 'centos', 'rhel', 'repo' ]
|
||||||
|
|
Loading…
Reference in New Issue