From 16c80501f56382896ce715a6915d133eb2f1ca6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Tue, 2 Apr 2019 10:10:27 +0200 Subject: [PATCH] copr: squash_actions is deprecated --- roles/copr/dist_git/tasks/main.yml | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/roles/copr/dist_git/tasks/main.yml b/roles/copr/dist_git/tasks/main.yml index 696d64904c..1c8e37a7a7 100644 --- a/roles/copr/dist_git/tasks/main.yml +++ b/roles/copr/dist_git/tasks/main.yml @@ -9,21 +9,23 @@ user: name="copr-dist-git" group=copr-dist-git groups=packager,apache uid=1002 - name: install packages - dnf: state=present name={{ item }} - with_items: - - cgit - - copr-dist-git - - rdiff-backup - - tmpwatch - - highlight - - scl-utils-build + dnf: + state: present + name: + - cgit + - copr-dist-git + - rdiff-backup + - tmpwatch + - highlight + - scl-utils-build - name: install latest dist-git and copr-dist-git - dnf: state=latest name={{ item }} - with_items: - - dist-git - - dist-git-selinux - - copr-dist-git + dnf: + state: latest + name: + - dist-git + - dist-git-selinux + - copr-dist-git - name: switch selinux to enforcing selinux: policy=targeted state=enforcing