2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
- name: Install EPEL
|
|
|
|
yum:
|
|
|
|
name: https://s3.amazonaws.com/ansible-ci-files/test/integration/targets/setup_epel/epel-release-latest-{{ ansible_distribution_major_version }}.noarch.rpm
|
2020-09-10 21:00:01 +02:00
|
|
|
disable_gpg_check: true
|
2020-03-09 10:11:07 +01:00
|
|
|
when: ansible_facts.distribution in ['RedHat', 'CentOS']
|