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.
32 lines
513 B
YAML
32 lines
513 B
YAML
7 years ago
|
---
|
||
|
- 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
|