From 6f4d41d1500948a4f6322d9c4f3ba141955f151c Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Jun 11 2019 15:22:12 +0000 Subject: fedimg: update package command to not use items Signed-off-by: Aurélien Bompard --- diff --git a/roles/fedimg/tasks/main.yml b/roles/fedimg/tasks/main.yml index e73411e..3e8ad77 100644 --- a/roles/fedimg/tasks/main.yml +++ b/roles/fedimg/tasks/main.yml @@ -2,22 +2,24 @@ # Configuration for the notifications consumer - name: install needed packages - package: name={{ item }} state=present - with_items: - - koji - - fedmsg - - python-paramiko - - python-fedimg - - python-libcloud - - python-fedimg - - python-boto3 + package: + state: present + name: + - koji + - fedmsg + - python-paramiko + - python-fedimg + - python-libcloud + - python-fedimg + - python-boto3 tags: - fedimg - name: install extra packages in staging - package: name={{ item }} state=present - with_items: - - euca2ools + package: + state: present + name: + - euca2ools tags: - fedimg