From ff1e1298940f2f8f0b002579e6d3b83a80dee29b Mon Sep 17 00:00:00 2001 From: clime Date: Thu, 19 Jan 2017 14:39:48 +0100 Subject: [PATCH] copr-backend: ensure copr-backend and copr-selinux packages are of the latest versions --- roles/copr/backend/tasks/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/roles/copr/backend/tasks/main.yml b/roles/copr/backend/tasks/main.yml index 0a4405a761..d63f224d44 100644 --- a/roles/copr/backend/tasks/main.yml +++ b/roles/copr/backend/tasks/main.yml @@ -10,11 +10,15 @@ tags: - config -- name: add packages for copr backend - dnf: state=present name={{ item }} +- name: install copr-backend and copr-selinux + dnf: state=latest name={{ item }} with_items: - copr-backend - copr-selinux + +- name: add additional packages for copr-backend + dnf: state=present name={{ item }} + with_items: - python-novaclient - python-glanceclient - python-neutronclient