community.general.facter 模块 – 在远程系统上运行发现程序 facter
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您使用的是 ansible
包,您可能已经安装了这个集合。 它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要其他要求才能使用此模块,请参阅 要求 获取详细信息。
要在 playbook 中使用它,请指定:community.general.facter
。
概要
在远程系统上运行
facter
发现程序 (https://github.com/puppetlabs/facter),返回可用于清单目的的 JSON 数据。
要求
在执行此模块的主机上需要以下要求。
facter
ruby-json
参数
参数 |
注释 |
---|---|
指定 facter 的参数。 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:无 |
可以在 |
|
支持:无 |
在 diff 模式下,将返回有关已更改(或可能需要在 |
示例
# Example command-line invocation
# ansible www.example.net -m facter
- name: Execute facter no arguments
community.general.facter:
- name: Execute facter with arguments
community.general.facter:
arguments:
- -p
- system_uptime
- timezone
- is_virtual