ansible.builtin.getent module – A wrapper to the unix getent utility
Note
This module is part of ansible-core
and included in all Ansible
installations. In most cases, you can use the short
module name
getent
even without specifying the collections:
keyword.
However, we recommend you use the FQCN for easy linking to the
module documentation and to avoid conflicting with other collections that may have
the same module name.
New in version 1.8: of ansible.builtin
Synopsis
Runs getent against one of it’s various databases and returns information into the host’s facts, in a getent_<database> prefixed variable.
Parameters
Parameter |
Comments |
---|---|
The name of a getent database supported by the target system (passwd, group, hosts, etc). |
|
If a supplied key is missing this will make the task fail if Choices:
|
|
Key from which to return values from the specified database, otherwise the full contents are returned. Default: “” |
|
Override all databases with the specified service The underlying system must support the service flag which is not always available. |
|
Character used to split the database values into lists/arrays such as ‘:’ or ‘ ‘, otherwise it will try to pick one depending on the database. |
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full |
Can run in check_mode and return changed status prediction withought modifying target |
|
Support: none |
Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode |
|
Support: full |
Action returns an |
|
Platform: posix |
Target OS/families that can be operated against |
Examples
- name: Get root user info
getent:
database: passwd
key: root
- debug:
var: ansible_facts.getent_passwd
- name: Get all groups
getent:
database: group
split: ':'
- debug:
var: ansible_facts.getent_group
- name: Get all hosts, split by tab
getent:
database: hosts
- debug:
var: ansible_facts.getent_hosts
- name: Get http service info, no error if missing
getent:
database: services
key: http
fail_key: False
- debug:
var: ansible_facts.getent_services
- name: Get user password hash (requires sudo/root)
getent:
database: shadow
key: www-data
split: ':'
- debug:
var: ansible_facts.getent_shadow
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 |
---|---|
A list of results or a single result as a list of the fields the db provides The list elements depend on the database queried, see getent man page for the structure Starting at 2.11 it now returns multiple duplicate entries, previouslly it only returned the last one Returned: always |
Authors
Brian Coca (@bcoca)