From 8835b09e95db58d6b97c04be9363a6a28d9fe3d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <joerg.sachse@slub-dresden.de> Date: Fri, 26 Jul 2024 09:04:25 +0200 Subject: [PATCH] fix: remove EPEL installation task; we expect EPEL to be enabled on production machines already, and Molecule enables EPEL during the prepare phase --- tasks/install_clamav.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tasks/install_clamav.yml b/tasks/install_clamav.yml index 8f96d41..2d14764 100644 --- a/tasks/install_clamav.yml +++ b/tasks/install_clamav.yml @@ -14,14 +14,6 @@ when: ansible_os_family == "Debian" tags: [apt] -- name: install EPEL so we have access to the ClamAV packages hosted there - ansible.builtin.yum: - name: "epel-release.noarch" - state: latest - update_cache: true - when: ansible_os_family == "RedHat" - tags: [yum] - - name: install clamav packages (RedHat) ansible.builtin.yum: name: [ -- GitLab