From 8cc33a29abe806c528c79de1757c09ecbb1602c0 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Mon, 7 Sep 2026 16:24:36 +0200 Subject: [PATCH] refactor: remove circular pip installation task The task named "Upgrade python package manager pip" installed pip with `state: present`, which never upgrades anything, and it did so through `ansible.builtin.pip`. That module already requires a working pip on the target, so the task could only ever run when its own result was already satisfied. Co-authored-by: Copilot --- tasks/main.yaml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tasks/main.yaml b/tasks/main.yaml index a05d671..1f64cab 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -1,10 +1,5 @@ --- -- name: Upgrade python package manager pip - ansible.builtin.pip: - name: pip - state: present - - name: Install required python library cryptography ansible.builtin.pip: name: cryptography>=1.2.3