ansible.builtin.mount_facts 模块 – 获取挂载信息。
注意
此模块是 ansible-core
的一部分,并包含在所有 Ansible 安装中。 在大多数情况下,您可以使用短模块名称 mount_facts
,即使不指定 collections 关键字。 但是,我们建议您使用完全限定集合名称 (FQCN) ansible.builtin.mount_facts
,以便轻松链接到模块文档并避免与其他可能具有相同模块名称的集合冲突。
ansible-core 2.18 中的新功能
概要
从首选来源检索有关挂载的信息,并根据文件系统类型和设备过滤结果。
参数
参数 |
注释 |
---|---|
一个 fnmatch 模式列表,用于按特殊设备或远程文件系统过滤挂载。 |
|
一个 fnmatch 模式列表,用于按文件系统类型过滤挂载。 |
|
模块是否应在 当此值为 选项
|
|
如果 设置为 默认值: |
|
用于确定挂载的源列表。 将跳过丢失的文件源(或空文件)。 将跳过重复的源,包括符号链接。
同一挂载点的其他挂载可从 默认情况下,挂载从所有标准位置检索,这些位置具有预定义的别名
|
|
这是等待每个挂载完成的最长秒数。 当此值为 与 此超时也适用于 如果模块配置为在 playbook 的事实收集阶段运行,请使用 module_defaults 设置超时以防止挂起(请参见示例)。 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完整 |
可以在 check_mode 中运行,并返回已更改状态预测,而无需修改目标,如果不支持,则将跳过该操作。 |
|
支持: 无 |
在差异模式下运行时,将返回有关已更改(或可能需要在 check_mode 中更改)的详细信息 |
|
平台: posix |
可以对其进行操作的目标操作系统/系列 |
示例
- name: Get non-local devices
mount_facts:
devices: "[!/]*"
- name: Get FUSE subtype mounts
mount_facts:
fstypes:
- "fuse.*"
- name: Get NFS mounts during gather_facts with timeout
hosts: all
gather_facts: true
vars:
ansible_facts_modules:
- ansible.builtin.mount_facts
module_default:
ansible.builtin.mount_facts:
timeout: 10
fstypes:
- nfs
- nfs4
- name: Get mounts from a non-default location
mount_facts:
sources:
- /usr/etc/fstab
- name: Get mounts from the mount binary
mount_facts:
sources:
- mount
mount_binary: /sbin/mount