Which Ansible capability runs a set of tasks when a property changes?
Ansible handlers are tasks triggered by notifications from tasks that report a changed state. They are commonly used to perform follow-up actions, such as restarting a service only after its configuration has changed.
Community Discussion