You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
488 B
20 lines
488 B
---
|
|
# 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_os_family == 'RedHat'
|
|
- ansible_distribution_major_version | int >= 8
|
|
|