summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/test_handlers_including_task.yml
blob: 8f7933ab05e48f1757f8ebf8d6d9b999b68bd088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Verify handler can include other tasks (#47287)
  hosts: testhost
  tasks:
    - name: include a task from the tasks section
      include_tasks: handlers.yml

    - name: notify a handler
      debug:
        msg: notifying handler
      changed_when: yes
      notify: include a task from the handlers section

  handlers:
    - name: include a task from the handlers section
      include_tasks: handlers.yml