Files
ansible/test/integration/targets/handlers/test_include_role_handler_once.yml
Martin KrizekandGitHub 09dd80b4ec Last handler defined runs, fix for roles (#79558)
Fixes #73643
* clear_notification method and simplify ifs
* Deduplicate code
* Limit number of Templar creations
* Fix sanity
* Preserve handler callbacks order as they were notified
2023-04-12 09:45:43 -04:00

21 lines
483 B
YAML

- 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