2016-12-07 16:16:06 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Check presence of fastestmirror.conf
|
2017-02-17 21:22:34 +00:00
|
|
|
stat:
|
|
|
|
path: /etc/yum/pluginconf.d/fastestmirror.conf
|
2016-12-07 16:16:06 +00:00
|
|
|
register: fastestmirror
|
|
|
|
|
|
|
|
# fastestmirror plugin actually slows down Ansible deployments
|
|
|
|
- name: Disable fastestmirror plugin
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/yum/pluginconf.d/fastestmirror.conf
|
|
|
|
regexp: "^enabled=.*"
|
|
|
|
line: "enabled=0"
|
|
|
|
state: present
|
|
|
|
when: fastestmirror.stat.exists
|
2017-04-20 16:17:01 +00:00
|
|
|
|
|
|
|
- name: Install packages requirements for bootstrap
|
2017-05-16 14:07:38 +00:00
|
|
|
raw: yum -y install libselinux-python
|