Ansible Module import tasks: Difference between revisions
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 11: | Line 11: | ||
- import_tasks: some-dir/some-other-file-that-contains-tasks.yaml | - import_tasks: some-dir/some-other-file-that-contains-tasks.yaml | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=<tt>when</tt>= | |||
<code>import_tasks</code> accepts a <code>when</code> clause. | |||
<font color=darkgray>TODO: https://docs.ansible.com/ansible/latest/user_guide/playbooks_conditionals.html#conditionals-with-imports</font> | |||
For more details, see: {{Internal|Ansible_Concepts#when_-_Conditional_Task_Execution|when - Conditional Task Execution}} | |||
=Difference between <tt>include_tasks</tt> and <tt>import_tasks</tt>= | |||
{{Internal|Ansible Difference between include and import|Difference between include and import}} |
Latest revision as of 05:26, 7 July 2021
External
Internal
Overview
---
- import_tasks: some-file-that-contains-tasks.yaml
- import_tasks: some-dir/some-other-file-that-contains-tasks.yaml
when
import_tasks
accepts a when
clause.
For more details, see: