mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-20 09:11:43 +02:00
21 lines
491 B
YAML
21 lines
491 B
YAML
---
|
|
# See: https://github.com/geerlingguy/ansible-role-certbot/issues/107
|
|
- block:
|
|
|
|
- name: Ensure dnf-plugins are installed on CentOS 8+.
|
|
yum:
|
|
name: dnf-plugins-core
|
|
state: present
|
|
|
|
- name: Enable DNF module for CentOS 8+.
|
|
shell: |
|
|
dnf config-manager --set-enabled powertools
|
|
args:
|
|
warn: false
|
|
register: dnf_module_enable
|
|
changed_when: false
|
|
|
|
when:
|
|
- ansible_distribution == 'CentOS'
|
|
- ansible_distribution_major_version | int >= 8
|