Merge "test_kubernetes: mock file operations in test_ssh_key"
[yardstick.git] / ansible / roles / set_package_installer_proxy / tasks / yum_disable_fastestmirrors.yml
1 ---
2   - name: yum disable fastest mirrors
3     lineinfile:
4       dest: "/etc/yum/pluginconf.d/fastestmirror.conf"
5       regexp: "^enabled=1"
6       line: "enabled=0"
7     ignore_errors: true
8
9   - name: yum clean all
10     command:  yum clean all
11