ansible.builtin.service_facts 模块 – 返回服务状态信息作为事实数据
注意
此模块是 ansible-core
的一部分,包含在所有 Ansible 安装中。在大多数情况下,即使不指定collections 关键字,您也可以使用简短的模块名称 service_facts
。但是,我们建议您使用完全限定集合名称 (FQCN) ansible.builtin.service_facts
,以便轻松链接到模块文档并避免与其他可能具有相同模块名称的集合冲突。
概要
返回各种服务管理实用程序的服务状态信息作为事实数据。
要求
执行此模块的主机需要满足以下要求。
以下任何受支持的 init 系统:systemd、sysv、upstart、openrc、AIX SRC
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完整 |
可以在 check_mode 下运行并返回更改的状态预测,而无需修改目标,如果不支持,则会跳过该操作。 |
|
支持: 无 |
在 diff 模式下,将返回已更改的内容(或在 check_mode 下可能需要更改的内容)的详细信息 |
|
支持: 完整 |
操作返回一个 |
|
平台: posix |
可以操作的目标操作系统/系列 |
注意
注意
当访问此模块收集的
ansible_facts.services
事实时,建议不要使用“点表示法”,因为服务名称中可能包含-
字符,这将导致无效的“点表示法”,例如ansible_facts.services.zuul-gateway
。建议使用服务名称的字符串值作为键,以便获取事实数据值,如ansible_facts.services['zuul-gateway']
AIX SRC 已在 2.11 版本中添加。
示例
- name: Populate service facts
ansible.builtin.service_facts:
- name: Print service facts
ansible.builtin.debug:
var: ansible_facts.services
- name: show names of existing systemd services, sometimes systemd knows about services that were never installed
debug: msg={{ existing_systemd_services | map(attribute='name') }}
vars:
known_systemd_services: "{{ ansible_facts['services'].values() | selectattr('source', 'equalto', 'systemd') }}"
existing_systemd_services: "{{ known_systemd_services | rejectattr('status', 'equalto', 'not-found') }}"
- name: restart systemd service if it exists
service:
state: restarted
name: ntpd.service
when: ansible_facts['services']['ntpd.service']['status'] | default('not-found') != 'not-found'
返回的事实
此模块返回的事实将在 hostvars
主机事实中添加/更新,并且可以像任何其他主机事实一样按名称引用。它们不需要注册即可使用。
键 |
描述 |
---|---|
以服务名称为键的服务状态。 返回: 总是 |
|
服务名称。 返回: 总是 示例: |
|
服务的 Init 系统。 以下之一: 返回: 总是 示例: |
|
服务状态。 通常包括(但不限于)以下内容: 根据使用的 init 系统,可能会返回其他状态。 返回: 总是 示例: |
|
服务状态。 可以是 返回: systemd 系统或 RedHat/SUSE 风格的 sysvinit/upstart 或 OpenBSD 示例: |