summaryrefslogtreecommitdiff
path: root/test/integration/targets/handlers/test_include_role_handler_once.yml
blob: 764aef6490cd4c82e6111874fc746345bd9ce5fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- hosts: localhost
  gather_facts: false
  tasks:
    - name: "Call main entry point"
      include_role:
        name: two_tasks_files_role

    - name: "Call main entry point again"
      include_role:
        name: two_tasks_files_role

    - name: "Call other entry point"
      include_role:
        name: two_tasks_files_role
        tasks_from: other

    - name: "Call other entry point again"
      include_role:
        name: two_tasks_files_role
        tasks_from: other