From a7435094a0bf124e17f78820bfd5b57985a9fdd9 Mon Sep 17 00:00:00 2001 From: James Antill Date: Tue, 11 Jun 2019 10:40:55 -0400 Subject: [PATCH] fedmsg/base: Convert from dnf/with_items to package/name. --- roles/fedmsg/base/tasks/main.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/roles/fedmsg/base/tasks/main.yml b/roles/fedmsg/base/tasks/main.yml index 843cee066b..bd02d472d3 100644 --- a/roles/fedmsg/base/tasks/main.yml +++ b/roles/fedmsg/base/tasks/main.yml @@ -3,11 +3,12 @@ # This is the base set of files needed for fedmsg - name: install needed packages - package: name={{ item }} state=present - with_items: - - libsemanage-python - - python-psutil - - policycoreutils-python # This is in the kickstart now. Here for old hosts. + package: + state: present + name: + - libsemanage-python + - python-psutil + - policycoreutils-python # This is in the kickstart now. Here for old hosts. tags: - packages - fedmsg/base -- 2.50.0