| |
@@ -3,8 +3,6 @@
|
| |
# usually there should be no conflict, but sometimes installing dnf-utils will actually install yum-utils
|
| |
shell: |
|
| |
dnf install --assumeyes --allowerasing {{item}}
|
| |
- args:
|
| |
- warn: false
|
| |
register: result
|
| |
with_items:
|
| |
- dnf-plugins-core
|
| |
@@ -28,8 +26,6 @@
|
| |
# Note, package module doesn't support allowerasing
|
| |
shell: |
|
| |
dnf install --assumeyes --allowerasing {{item}}
|
| |
- args:
|
| |
- warn: false
|
| |
register: result
|
| |
with_flattened:
|
| |
- "{{ pkgs_ordinary_req|d|list }}"
|
| |
This is needed to support newer Ansible.
The
warn
module param was removed.See:
https://github.com/ansible/ansible/blob/stable-2.14/changelogs/CHANGELOG-v2.14.rst
Signed-off-by: Miroslav Vadkerti mvadkert@redhat.com