mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
31 lines
864 B
YAML
31 lines
864 B
YAML
---
|
||
# See: https://github.com/geerlingguy/ansible-role-certbot/issues/107
|
||
- block:
|
||
|
||
- name: Ensure dnf-plugins are installed on CentOS/Rocky 8+.
|
||
yum:
|
||
name: dnf-plugins-core
|
||
state: present
|
||
|
||
- block:
|
||
|
||
- name: Enable DNF module for CentOS/Rocky 8.3+.
|
||
shell: |
|
||
dnf config-manager --set-enabled powertools
|
||
register: dnf_module_enable
|
||
changed_when: false
|
||
|
||
when: ansible_facts['distribution_version'] is version('8.3', '>=')
|
||
|
||
- name: Enable DNF module for CentOS/Rocky 8.0–8.2.
|
||
shell: |
|
||
dnf config-manager --set-enabled PowerTools
|
||
register: dnf_module_enable
|
||
changed_when: false
|
||
|
||
when: ansible_facts['distribution_version'] is version('8.2', '<=')
|
||
|
||
when:
|
||
- ansible_distribution == 'CentOS' or ansible_distribution == 'Rocky'
|
||
- ansible_distribution_major_version | int >= 8
|