A role contains a handler. The playbook includes the role and also defines a task that notifies the same handler. When the playbook runs, the handler executes only once. Which of the following best explains this behavior?
Correct: Ansible ensures handlers execute once even if notified multiple times.
Why this answer
Option A is correct because Ansible deduplicates notifications by handler name. Option B is false (handler runs once regardless). Options C and D are incorrect.