improve error handling

This commit is contained in:
L3D 2024-01-14 21:23:13 +01:00
parent 1eed2ea97f
commit 59c93bba34
Signed by: l3d
GPG key ID: CD08445BFF4313D1
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,4 @@
---
- name: Install bonjour
ansible.builtin.include_tasks: packages.yml
ansible.builtin.include_tasks:
file: packages.yml

View file

@ -1,5 +1,9 @@
---
- name: Install bonjour
- name: Install bonjour via chocolatey
chocolatey.chocolatey.win_chocolatey:
name: 'bonjour'
state: present
register: _bonjour
until: _bonjour is succeeded
retries: 5
delay: 2