2017-11-21 09:40:58 +01:00
|
|
|
# test code for the dnf module
|
2016-10-31 10:38:31 -07: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 00:24:20 -08:00
|
|
|
|
2019-07-03 11:11:20 -04:00
|
|
|
- include_tasks: dnf.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
|
2020-04-29 17:00:35 -05:00
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
2017-11-21 09:40:58 +01:00
|
|
|
|
2020-09-15 10:36:18 -05:00
|
|
|
- include_tasks: filters_check_mode.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
|
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
|
|
|
tags:
|
|
|
|
- filters
|
|
|
|
|
|
|
|
- include_tasks: filters.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
|
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
|
|
|
tags:
|
|
|
|
- filters
|
|
|
|
|
2020-08-31 09:47:38 -05:00
|
|
|
- include_tasks: gpg.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
|
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
|
|
|
|
2019-07-03 11:11:20 -04:00
|
|
|
- include_tasks: repo.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
|
2020-04-29 17:00:35 -05:00
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
2017-01-05 00:24:20 -08:00
|
|
|
|
2019-07-03 11:11:20 -04:00
|
|
|
- include_tasks: dnfinstallroot.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
|
2020-04-29 17:00:35 -05:00
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
2018-05-24 23:22:53 -04:00
|
|
|
|
2019-01-23 13:52:03 -08:00
|
|
|
# Attempting to install a different RHEL release in a tmpdir doesn't work (rhel8 beta)
|
2019-07-03 11:11:20 -04:00
|
|
|
- include_tasks: dnfreleasever.yml
|
2018-05-24 23:22:53 -04:00
|
|
|
when:
|
2019-07-03 11:11:20 -04:00
|
|
|
- ansible_distribution == 'Fedora'
|
|
|
|
- ansible_distribution_major_version is version('23', '>=')
|
2018-11-08 17:15:11 -06:00
|
|
|
|
2019-07-03 11:11:20 -04:00
|
|
|
- include_tasks: modularity.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('29', '>=')) or
|
2020-04-29 17:00:35 -05:00
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
2020-05-13 12:27:58 +00: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 14:32:07 +04:30
|
|
|
|
2020-12-11 18:46:51 -06:00
|
|
|
# TODO: Construct our own instance where 'nobest' applies, so we can stop using
|
|
|
|
# a third-party repo to test this behavior.
|
2021-04-30 11:35:12 -05:00
|
|
|
#
|
|
|
|
# This fails due to conflicts on Fedora 34, but we can nuke this entirely once
|
|
|
|
# #74224 lands, because it covers nobest cases.
|
2020-07-27 14:32:07 +04:30
|
|
|
- include_tasks: nobest.yml
|
2021-04-30 11:35:12 -05:00
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('24', '>=') and
|
|
|
|
ansible_distribution_major_version is version('34', '!=')) or
|
2020-07-27 14:32:07 +04:30
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|
2021-04-16 19:38:52 +04:30
|
|
|
|
2021-04-30 11:35:12 -05:00
|
|
|
|
2021-04-16 19:38:52 +04:30
|
|
|
- include_tasks: cacheonly.yml
|
|
|
|
when: (ansible_distribution == 'Fedora' and ansible_distribution_major_version is version('23', '>=')) or
|
|
|
|
(ansible_distribution in ['RedHat', 'CentOS'] and ansible_distribution_major_version is version('8', '>='))
|