diff --git a/tasks/main.yml b/tasks/main.yml index 7696c1a..6e0169c 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,7 +1,7 @@ --- - name: "Test if EPEL ist necessary" fail: msg="This system does not need EPEL" - when: ansible_os_family != "RedHat" or ansible_distribution == "Fedora" + when: ansible_os_family not in ["RedHat", "AlmaLinux", "Rocky"] or ansible_distribution == "Fedora" - name: Update CA-Certificates