mirror of
https://github.com/ansible/ansible.git
synced 2026-08-01 16:19:10 +02:00
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
21 lines
483 B
YAML
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
|