mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
73acdaa489
* dnf_versionlock: new module * dnf_versionlock: fix style in doc * dnf_versionlock: use check_rc in run_command * dnf_versionlock: fix style and typos in doc
8 lines
347 B
YAML
8 lines
347 B
YAML
---
|
|
- block:
|
|
- include_tasks: install.yml
|
|
- include_tasks: lock_bash.yml
|
|
- include_tasks: lock_updates.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', '>='))
|
|
...
|