mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
483 B
YAML
21 lines
483 B
YAML
2 years ago
|
- 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
|