From 5a22b8840ed7596b0e1118b5d6ff25c43160cd3b Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Fri, 15 Dec 2017 08:44:18 -0600 Subject: [PATCH] Use state=present for EPEL packages Requiring the latest EPEL and yum packages is not necessary and causes deployment delays. This patch ensures that EPEL and yum-related packages are installed the system, even if they aren't the absolute latest. Change-Id: Ic62e43288bf6386c8b2233ea305f65d226a0ae73 --- tasks/pre_install_yum.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/pre_install_yum.yml b/tasks/pre_install_yum.yml index 46ad555..ed9ac30 100644 --- a/tasks/pre_install_yum.yml +++ b/tasks/pre_install_yum.yml @@ -22,7 +22,7 @@ - name: Install EPEL and yum priorities plugin package: name: "{{ pip_epel_prep_distro_packages }}" - state: "{{ pip_install_package_state }}" + state: present when: - user_external_repo_key is not defined tags: