From d87a47af2de1fa3bf9187eb045787bd2d60bb3f8 Mon Sep 17 00:00:00 2001 From: Jose Date: Wed, 22 Oct 2025 17:45:07 +0200 Subject: [PATCH] modified: tasks/setupacdc.yml --- tasks/setupacdc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/setupacdc.yml b/tasks/setupacdc.yml index 99fee3e..66ee975 100644 --- a/tasks/setupacdc.yml +++ b/tasks/setupacdc.yml @@ -9,7 +9,7 @@ ansible.builtin.package: # Use the appropriate package name based on the distribution name: "{{ __pip_package_name }}" - state: present + state: absent vars: __pip_package_name: "{% if ansible_os_family == 'Debian' %}python3-pip{% elif ansible_os_family == 'RedHat' %}python3-pip{% elif ansible_os_family == 'Suse' %}python3-pip{% else %}python3-pip{% endif %}" # Ensure the package manager cache is updated before installation, especially on Debian/Ubuntu