ansible-role-certbot/tasks/setup-RedHat.yml
Simone Scanzoni 01a8ac6f90 Fix Fedora
2026-01-25 04:03:27 +01:00

13 lines
351 B
YAML

---
# 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
when: ansible_distribution != 'Fedora'