summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/tasks/notify.yml
blob: 88432d9a860d09dc0d833be20da72648ad92be92 (plain)
1
2
3
4
5
6
7
8
9
10
11
- name: notify single handler
  ansible.builtin.debug:
    msg: task with single handler
  notify: handler1

- name: notify multiple handlers
  ansible.builtin.debug:
    msg: task with multiple handlers
  notify:
    - handler1
    - handler2