From 750f0c7333a8cd2231b40872d10e016d0a01d918 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 29 Jan 2018 17:01:51 +0000 Subject: [PATCH] switch this to use package --- playbooks/manual/upgrade/fedmsg.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/manual/upgrade/fedmsg.yml b/playbooks/manual/upgrade/fedmsg.yml index 56e4017831..459b25163b 100644 --- a/playbooks/manual/upgrade/fedmsg.yml +++ b/playbooks/manual/upgrade/fedmsg.yml @@ -40,11 +40,11 @@ command: yum clean all {%if testing%} --enablerepo=infrastructure-tags-stg {%endif%} check_mode: no - name: yum update fedmsg packages from the main repo - yum: name={{item}} state=latest + package: name={{item}} state=latest when: not testing with_items: "{{packages}}" - name: yum update fedmsg packages from testing repo - yum: name={{item}} state=latest enablerepo=infrastructure-tags-stg + package: name={{item}} state=latest enablerepo=infrastructure-tags-stg when: testing with_items: "{{packages}}"