community.general.facter_facts 模块 – 在远程系统上运行发现程序 facter 并返回 Ansible facts

注意

此模块是 community.general 集合(版本 10.1.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install community.general。您需要进一步的要求才能使用此模块,请参阅 要求 获取详细信息。

要在 playbook 中使用它,请指定:community.general.facter_facts

community.general 8.0.0 中的新增功能

概要

要求

以下是在执行此模块的主机上需要的要求。

  • facter

  • ruby-json

参数

参数

注释

arguments

列表 / 元素=字符串

指定 facter 的参数。

属性

属性

支持

描述

check_mode

支持:完全

此操作不会修改状态。

可以在 check_mode 中运行,并返回更改的状态预测,而无需修改目标。

diff_mode

支持: 不适用

此操作不会修改状态。

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

facts

支持:完全

操作返回一个 ansible_facts 字典,该字典将更新现有的主机 facts。

示例

- name: Execute facter no arguments
  community.general.facter_facts:

- name: Execute facter with arguments
  community.general.facter_facts:
    arguments:
        - -p
        - system_uptime
        - timezone
        - is_virtual

返回 Facts

此模块返回的 Facts 将添加到/更新 hostvars 主机 Facts 中,并且可以像任何其他主机 fact 一样按名称引用。它们不需要注册即可使用。

描述

facter

字典

包含在远程系统中发现的 facts 的字典。

返回: 总是

作者

  • Ansible 核心团队

  • Michael DeHaan