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.

14 lines
397 B

  1. ---
  2. - name: Check presence of fastestmirror.conf
  3. stat: path=/etc/yum/pluginconf.d/fastestmirror.conf
  4. register: fastestmirror
  5. # fastestmirror plugin actually slows down Ansible deployments
  6. - name: Disable fastestmirror plugin
  7. lineinfile:
  8. dest: /etc/yum/pluginconf.d/fastestmirror.conf
  9. regexp: "^enabled=.*"
  10. line: "enabled=0"
  11. state: present
  12. when: fastestmirror.stat.exists