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 '''