2017-11-21 09:40:58 +01:00
# test code for the dnf module
2016-10-31 18:38:31 +01:00
# (c) 2014, James Tanner <tanner.jc@gmail.com>
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
# Note: We install the yum package onto Fedora so that this will work on dnf systems
# We want to test that for people who don't want to upgrade their systems.
2017-01-05 09:24:20 +01:00
2019-07-03 17:11:20 +02:00
- include_tasks : dnf.yml
when : (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
2020-04-30 00:00:35 +02:00
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
2017-11-21 09:40:58 +01:00
2019-07-03 17:11:20 +02:00
- include_tasks : repo.yml
when : (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
2020-04-30 00:00:35 +02:00
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
2017-01-05 09:24:20 +01:00
2019-07-03 17:11:20 +02:00
- include_tasks : dnfinstallroot.yml
when : (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
2020-04-30 00:00:35 +02:00
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
2018-05-25 05:22:53 +02:00
2019-01-23 22:52:03 +01:00
# Attempting to install a different RHEL release in a tmpdir doesn't work (rhel8 beta)
2019-07-03 17:11:20 +02:00
- include_tasks : dnfreleasever.yml
2018-05-25 05:22:53 +02:00
when :
2019-07-03 17:11:20 +02:00
- ansible_distribution == 'Fedora'
- ansible_distribution_major_version is version('23', '>=')
2018-11-09 00:15:11 +01:00
2019-07-03 17:11:20 +02:00
- include_tasks : modularity.yml
when : (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('29', '>=')) or
2020-04-30 00:00:35 +02:00
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
2020-05-13 14:27:58 +02:00
- include_tasks : logging.yml
when : (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('31', '>=')) or
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
2020-07-27 12:02:07 +02:00
- include_tasks : nobest.yml
when : (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('24', '>=') and ansible_distribution_major_version is version('31', '<=')) or
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))