From 93d24efe377aeafbb4a073cb490f70032fe77e20 Mon Sep 17 00:00:00 2001 From: Major Hayden Date: Mon, 6 May 2019 09:59:15 -0500 Subject: [PATCH] package_facts: Trivial docs cleanup (#56015) Make a small documentation cleanup for the package_facts module to use the current YAML style and remove unnecessary quotes around `auto`. Signed-off-by: Major Hayden --- lib/ansible/modules/packaging/os/package_facts.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/lib/ansible/modules/packaging/os/package_facts.py b/lib/ansible/modules/packaging/os/package_facts.py index 9a331664d3..c758025a07 100644 --- a/lib/ansible/modules/packaging/os/package_facts.py +++ b/lib/ansible/modules/packaging/os/package_facts.py @@ -44,12 +44,13 @@ author: ''' EXAMPLES = ''' -- name: get the rpm package facts +- name: Gather the rpm package facts package_facts: - manager: "auto" + manager: auto -- name: show them - debug: var=ansible_facts.packages +- name: Print the rpm package facts + debug: + var: ansible_facts.packages '''