I have two hosts which I want to setup with Ansible. Each host is assigned a role (host1: r1 and host2: r2). I run the configurations in one playbook.
Description: Both roles run multiple tasks, but at some point r2 needs to wait (pause execution of remaining tasks) until a file is created on host1 by r1. When the file is created, I plan to copy the file from r1 to the Ansible master and then r2 should be notified to continue executing the remaining tasks, which starts by copying the file to r2.
How can I do that? I thuoght about handlers but I dont now how to block the execution of tasks until a event happens (file was created and copied to master)
- Thanks