From f17f857da6f38407d750a0444a9cf7b02049b73f Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Sun, 30 Nov 2025 13:19:59 +0100 Subject: [PATCH] feat: move retry to package task --- tasks/apk/packages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/apk/packages.yaml b/tasks/apk/packages.yaml index 733c8cb..d09cd67 100644 --- a/tasks/apk/packages.yaml +++ b/tasks/apk/packages.yaml @@ -4,7 +4,6 @@ - name: "manage packages" when: 'ansible_os_family == "Alpine"' become: true - retries: 3 block: # install packages @@ -13,6 +12,7 @@ name: "{{ item }}" state: "present" update_cache: true + retries: 3 with_items: - "bash" - "btop"