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.
11 lines
310 B
11 lines
310 B
---
|
|
# See: https://github.com/geerlingguy/ansible-role-certbot/issues/107
|
|
- name: Ensure dnf-plugins are installed on Rocky/AlmaLinux.
|
|
yum:
|
|
name: dnf-plugins-core
|
|
state: present
|
|
|
|
- name: Enable DNF module for Rocky/AlmaLinux.
|
|
shell: |
|
|
dnf config-manager --set-enabled crb
|
|
changed_when: false
|
|
|