community.general.zpool_facts 模块 – 收集关于 ZFS 池的事实信息
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.general
。
要在剧本中使用它,请指定: community.general.zpool_facts
。
概要
收集 ZFS 池属性的事实信息。
参数
参数 |
注释 |
---|---|
ZFS 池名称。 |
|
指定属性值是否应以机器友好的格式显示。 选项
|
|
指定应以逗号分隔的格式查询哪些数据集属性。有关数据集属性的更多信息,请查看 zpool(1M) 手册页。 默认值: |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全支持 此操作不会修改状态。 |
可以在 |
|
支持: N/A 此操作不会修改状态。 |
处于 diff 模式时,将返回有关已更改内容(或可能需要在 |
|
支持:完全支持 |
操作返回一个 |
示例
- name: Gather facts about ZFS pool rpool
community.general.zpool_facts: pool=rpool
- name: Gather space usage about all imported ZFS pools
community.general.zpool_facts: properties='free,size'
- name: Print gathered information
ansible.builtin.debug:
msg: 'ZFS pool {{ item.name }} has {{ item.free }} free space out of {{ item.size }}.'
with_items: '{{ ansible_zfs_pools }}'
返回的事实信息
此模块返回的事实信息会添加到/更新 hostvars
主机事实信息中,并且可以像任何其他主机事实信息一样按名称引用。它们不需要注册即可使用。
键 |
描述 |
---|---|
ZFS 池事实信息 返回:始终返回 示例: |
返回值
公共返回值已在此处记录 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
ZFS 池名称 返回:始终返回 示例: |
|
如果应以机器友好的格式提供可解析的输出。 返回:如果将“parsable”设置为 True 示例: |