Hello Ansible users and dev,
Is there any way to define a handler once, and use it in roles in multiple plays in a playbook? For example, if I have:
- hosts: set1
roles:
- role1
- hosts: set2
roles:
- role2
How can I define a handler once, to use in both roles?
Regards,
Anand