ansible.builtin.include_tasks 模块 – 动态包含任务列表

注意

此模块是 ansible-core 的一部分,并包含在所有 Ansible 安装中。在大多数情况下,即使不指定集合关键字,您也可以使用简短模块名称 include_tasks。但是,我们建议您使用完全限定集合名称(FQCN) ansible.builtin.include_tasks,以便轻松链接到模块文档,并避免与其他可能具有相同模块名称的集合发生冲突。

概要

  • 包含一个文件,其中包含要在当前 playbook 中执行的任务列表。

参数

参数

注释

apply

字符串

在 Ansible 2.7 中添加

接受任务关键字的哈希值(例如 tagsbecome),这些关键字将应用于 include 中的任务。

file

字符串

在 Ansible 2.7 中添加

指定列出要添加到当前 playbook 的任务的文件名。

自由格式

字符串

直接指定导入文件的名称,无需其他任何选项 - include_tasks: file.yml

相当于为 file 参数指定参数。

大多数关键字,包括 loop、with_items 和 conditionals,都适用于此语句,这与 ansible.builtin.import_tasks 不同。

不支持 do-until 循环。

属性

属性

支持

描述

action

支持:

虽然此操作在控制器上本地执行,但它不受操作插件的管辖

表示它具有相应的操作插件,因此某些选项部分可以在控制器上执行

async

支持:

支持与 async 关键字一起使用

become

支持:

可以与 become 关键字一起使用

bypass_host_loop

支持:

强制执行不按主机执行的“全局”任务,这会绕过按主机模板化、串行、节流和其他循环考虑

条件语句的工作方式类似于使用 run_once,使用的变量将来自第一个可用主机

此操作在锁步策略之外将无法正常工作

bypass_task_loop

支持:

这些任务忽略 loopwith_ 关键字

check_mode

支持:

可以在 check_mode 中运行并返回已更改状态预测,而无需修改目标,如果不支持,则会跳过该操作。

connection

支持:

使用目标配置的连接信息在其上执行代码

core

支持:完全

这是一个“核心引擎”功能,其实现方式与大多数任务操作不同,因此无法通过插件系统以任何方式覆盖它。

delegation

支持:

由于没有连接和事实,因此委托包含没有意义

可以与 delegate_to 和相关关键字结合使用

diff_mode

支持:

在 diff 模式下,将返回有关已更改(或可能需要在 check_mode 中更改)的详细信息

ignore_conditional

支持:

该操作不受条件执行的约束,因此它将忽略 when: 关键字

platform

平台: 全部

可以操作的目标操作系统/系列

tags

支持:完全

此操作会解释标签,但不会自动被 include 的任务继承,请参阅 apply

允许使用 'tags' 关键字来控制此操作的选择以进行执行

until

支持:完全

表示此操作是否遵循 until/retry/poll 关键字

另请参阅

另请参阅

ansible.builtin.import_playbook

导入 playbook。

ansible.builtin.import_role

将角色导入到 play 中。

ansible.builtin.import_tasks

导入任务列表。

ansible.builtin.include_role

加载并执行角色。

重用 Ansible 工件

有关包含和导入 playbook、角色和任务的更多信息。

示例

- hosts: all
  tasks:
    - ansible.builtin.debug:
        msg: task1

    - name: Include task list in play
      ansible.builtin.include_tasks:
        file: stuff.yaml

    - ansible.builtin.debug:
        msg: task10

- hosts: all
  tasks:
    - ansible.builtin.debug:
        msg: task1

    - name: Include task list in play only if the condition is true
      ansible.builtin.include_tasks: "{{ hostvar }}.yaml"
      when: hostvar is defined

- name: Apply tags to tasks within included file
  ansible.builtin.include_tasks:
    file: install.yml
    apply:
      tags:
        - install
  tags:
    - always

- name: Apply tags to tasks within included file when using free-form
  ansible.builtin.include_tasks: install.yml
  args:
    apply:
      tags:
        - install
  tags:
    - always

作者

  • Ansible Core 团队 (@ansible)