You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Ansible Project
Hi All,
how can I implement 'retries:' for a bunch of tasks. Unfortunately it does not work with 'block:' and i get the error: 'ERROR! 'until' is not a valid attribute for a block'. Any idea or trick to get the result is highly welocomed.
tasks: - name: "execute show commands before Update" nxos_command: commands: "{{ item }}" ignore_errors: true with_items: "{{ todo }}" register: before_install