mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
Hi, I'm kind of new to Ansible so sorry if this is butchering your nice module ;) I needed Centos 9 support, more a Debian guy to be honest. Google told me I need the epel-release repo, what ever that is, to be able to install certbot package. So as always "this works for me", hope this helps. Btw. I never understood why register a... variable like `dnf_module_enable` and "do not use it", because I cannot find any other reference of it.
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
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
|
||
|
||
- block:
|
||
|
||
- name: Enable DNF module for CentOS 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 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'
|
||
- ansible_distribution_major_version | int >= 8
|
||
- ansible_distribution_major_version | int < 9
|
||
|
||
- name: Enable DNF module for CentOS 9
|
||
ansible.builtin.dnf:
|
||
name: epel-release
|
||
state: present
|
||
register: dnf_module_enable
|
||
changed_when: false
|
||
|
||
when:
|
||
- ansible_distribution == 'CentOS'
|
||
- ansible_distribution_major_version | int >= 9
|