mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
9 lines
347 B
YAML
9 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', '>='))
|
||
|
...
|