2018-05-31 19:08:38 +02:00
|
|
|
---
|
|
|
|
- hosts: testhost
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- include_tasks:
|
|
|
|
file: include_tasks.yml
|
|
|
|
apply:
|
|
|
|
tags:
|
|
|
|
- foo
|
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- include_tasks_result is defined
|
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
|
|
|
- include_role:
|
|
|
|
name: include_role
|
|
|
|
apply:
|
|
|
|
tags:
|
|
|
|
- foo
|
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- include_role_result is defined
|
|
|
|
tags:
|
|
|
|
- always
|
2018-08-30 22:56:28 +02:00
|
|
|
|
|
|
|
- include_role:
|
|
|
|
name: include_role2
|
|
|
|
apply:
|
|
|
|
tags:
|
|
|
|
- foo
|
|
|
|
tags:
|
|
|
|
- not_specified_on_purpose
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- include_role2_result is undefined
|
|
|
|
tags:
|
|
|
|
- always
|
2018-08-31 00:11:32 +02:00
|
|
|
|
|
|
|
- include_role:
|
|
|
|
name: include_role
|
|
|
|
apply:
|
|
|
|
delegate_to: testhost2
|