From 68ccfbf89b18338c98ab1d043df127ed01d9ccca Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 4 Mar 2014 11:09:19 +0100 Subject: [PATCH] Change yum clean expired-cache to yum clean all --- playbooks/update_packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/update_packages.yml b/playbooks/update_packages.yml index 3e0a55caa1..5a0dce9049 100644 --- a/playbooks/update_packages.yml +++ b/playbooks/update_packages.yml @@ -16,7 +16,7 @@ tasks: - name: expire-caches {% if testing %}(with infrastructure-testing on){% endif %} - command: yum clean expire-cache {% if testing %} --enablerepo=infrastructure-testing {% endif %} + command: yum clean all {% if testing %} --enablerepo=infrastructure-testing {% endif %} always_run: yes - name: yum update {{ package }} {% if testing %}(with infrastructure-testing on){% endif %}