From 878152cbeb41c830ac23643269c5307dd79bce99 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 13 Feb 2014 21:45:21 +0100 Subject: [PATCH] Always run yum clean expire-cache --- playbooks/update_packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/update_packages.yml b/playbooks/update_packages.yml index d621dcd553..3e0a55caa1 100644 --- a/playbooks/update_packages.yml +++ b/playbooks/update_packages.yml @@ -17,6 +17,7 @@ - name: expire-caches {% if testing %}(with infrastructure-testing on){% endif %} command: yum clean expire-cache {% if testing %} --enablerepo=infrastructure-testing {% endif %} + always_run: yes - name: yum update {{ package }} {% if testing %}(with infrastructure-testing on){% endif %} yum: name={{ package }} state=latest {% if testing %}enablerepo=infrastructure-testing{% endif %}