From f86fea618d4f98bf982ced213954568b0d0daa33 Mon Sep 17 00:00:00 2001 From: Guillaume Bernard Date: Tue, 31 Dec 2024 00:08:56 +0100 Subject: [PATCH] fix: exclude Fedora from RHEL specific tasks --- tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 894143c..1ad5f78 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -2,7 +2,7 @@ - import_tasks: include-vars.yml - import_tasks: setup-RedHat.yml - when: ansible_os_family == 'RedHat' + when: ansible_os_family == 'RedHat' and not ansible_distribution == 'Fedora' - import_tasks: install-with-package.yml when: certbot_install_method == 'package'