copr: squash_actions is deprecated

This commit is contained in:
Miroslav Suchý 2019-04-02 10:27:12 +02:00
parent 16c80501f5
commit 44650c688e
5 changed files with 41 additions and 36 deletions

View file

@ -3,9 +3,9 @@
# Particularly it follows "(Option B) The Hard Way"
- name: Install required packages
dnf: state=latest name={{ item }}
with_items:
- certbot
dnf:
state: latest
name: certbot
- name: Create The Web Root
file:

View file

@ -10,13 +10,14 @@
- user: name=copr group=copr uid=989
- name: install copr-backend and copr-selinux
dnf: state=latest name={{ item }}
with_items:
- copr-backend
dnf:
state: latest
name: copr-backend
- name: add additional packages for copr-backend
dnf: state=present name={{ item }}
with_items:
dnf:
state: present
name:
- python2-glanceclient
- python2-neutronclient
- python2-keystoneclient

View file

@ -31,18 +31,22 @@
- name: install copr-selinux
dnf: state=latest pkg=copr-selinux
tags:
- packages
- name: install common copr packages
dnf: state=present pkg={{ item }}
with_items:
dnf:
state: present
pkg:
- "system-config-firewall-base"
- "nrpe"
tags:
- packages
- name: install dev helper packages
dnf: state=present pkg={{ item }}
with_items:
dnf:
state: present
pkg:
- "bash-completion"
- "screen"
- "tmux"

View file

@ -15,8 +15,9 @@
copy: src=cron.hourly/copr-frontend dest=/etc/cron.hourly/
- name: install copr-frontend and copr-selinux
dnf: state=latest name={{ item }}
with_items:
dnf:
state: latest
name:
- copr-frontend
- copr-selinux
tags:
@ -24,8 +25,9 @@
# we install python-alembic because https://bugzilla.redhat.com/show_bug.cgi?id=1536058
- name: install additional pkgs for copr-frontend
dnf: state=present pkg={{ item }}
with_items:
dnf:
state: present
pkg:
- "bash-completion"
- "mod_ssl"
- redis

View file

@ -11,9 +11,7 @@
#when: devel
- name: install copr-keygen
dnf: state=latest name={{ item }}
with_items:
- copr-keygen
dnf: state=latest name=copr-keygen
notify:
- restart haveged