ansible.builtin.service_facts module – Return service state information as fact data
Note
This module is part of ansible-core
and included in all Ansible installations. In most cases, you can use the short module name service_facts
even without specifying the collections keyword. However, we recommend you use the Fully Qualified Collection Name (FQCN) ansible.builtin.service_facts
for easy linking to the module documentation and to avoid conflicting with other collections that may have the same module name.
Synopsis
- Return service state information as fact data for various service management utilities.
Requirements
The below requirements are needed on the host that executes this module.
- Any of the following supported init systems: systemd, sysv, upstart, openrc, AIX SRC
Attributes
Attribute | Support | Description |
---|---|---|
check_mode | Support: full | Can run in check_mode and return changed status prediction without modifying target, if not supported the action will be skipped. |
diff_mode | Support: none | Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode |
facts | Support: full | Action returns an |
platform | Platform: posix | Target OS/families that can be operated against |
Notes
Note
- When accessing the
ansible_facts.services
facts collected by this module, it is recommended to not use “dot notation” because services can have a-
character in their name which would result in invalid “dot notation”, such asansible_facts.services.zuul-gateway
. It is instead recommended to using the string value of the service name as the key in order to obtain the fact data value likeansible_facts.services['zuul-gateway']
- AIX SRC was added in version 2.11.
Examples
- name: Populate service facts ansible.builtin.service_facts: - name: Print service facts ansible.builtin.debug: var: ansible_facts.services
Returned Facts
Facts returned by this module are added/updated in the hostvars
host facts and can be referenced by name just like any other host fact. They do not need to be registered in order to use them.
Key | Description |
---|---|
services list / elements=dictionary | States of the services with service name as key. Returned: always |
name string |
Name of the service. Returned: always Sample: |
source string |
Init system of the service. One of Returned: always Sample: |
state string |
State of the service. This commonly includes (but is not limited to) the following: Depending on the used init system additional states might be returned. Returned: always Sample: |
status string |
State of the service. Either Returned: systemd systems or RedHat/SUSE flavored sysvinit/upstart or OpenBSD Sample: |
Collection links
© 2012–2018 Michael DeHaan
© 2018–2024 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/ansible/builtin/service_facts_module.html