Merge "Install yum on CentOS8/Fedora"

This commit is contained in:
Zuul 2020-05-13 15:40:55 +00:00 committed by Gerrit Code Review
commit 6ec9128c50

View File

@ -74,6 +74,11 @@
- ruby-devel
- zlib-devel
- name: Install yum (Fedora or CentOS/RHEL>=8)
dnf:
name: yum
become: true
when:
- ansible_os_family == 'RedHat'
- ansible_distribution == "Fedora" or ansible_distribution_major_version >= "8"