79537194

Date: 2025-03-26 20:25:16
Score: 2
Natty:
Report link

I found a good workaround for this issue. I'm using the wait_for module. This module also works in strategy free. Just set a Timeout (in seconds) and a when condition.

- name: wait for something
  ansible.builtin.wait_for: 
    timeout: 20 
  when: 
    - some_condition

https://docs.ansible.com/ansible/latest/collections/ansible/builtin/wait_for_module.html

Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user30072458