Commit f17f857d authored by Simon Cornet's avatar Simon Cornet
Browse files

feat: move retry to package task

parent 0b6c6296
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"