From ff66d56d4a6d139e6ee0a2ae6cd8cfdb826dfc4a Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Sat, 4 Oct 2014 10:20:35 -0400 Subject: [PATCH] corrected and made better docs for getent --- lib/ansible/modules/extras/system/getent.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/ansible/modules/extras/system/getent.py b/lib/ansible/modules/extras/system/getent.py index 0173618f699..7da1be45fae 100644 --- a/lib/ansible/modules/extras/system/getent.py +++ b/lib/ansible/modules/extras/system/getent.py @@ -26,7 +26,7 @@ module: getent short_description: a wrapper to the unix getent utility description: - Runs getent against one of it's various databases and returns information into - the host's facts + the host's facts, in a getent_ prefixed variable version_added: "1.8" options: database: @@ -51,7 +51,7 @@ options: description: - If a supplied key is missing this will make the task fail if True -notes: +notes: - "Not all databases support enumeration, check system documentation for details" requirements: [ ] author: Brian Coca @@ -60,23 +60,23 @@ author: Brian Coca EXAMPLES = ''' # get root user info - getent: database=passwd key=root - register: root_info +- debug: var=getent_passwd # get all groups - getent: database=group split=':' - register: groups +- debug: var=getent_group # get all hosts, split by tab - getent: database=hosts - register: hosts +- debug: var=getent_hosts # get http service info, no error if missing - getent: database=services key=http fail_key=False - register: http_info +- debug: var=getent_services # get user password hash (requires sudo/root) - getent: database=shadow key=www-data split=: - register: pw_hash +- debug: var=getent_shadow '''