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 <major@redhat.com>
This commit is contained in:
parent
f90398a31d
commit
93d24efe37
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
|
||||
'''
|
||||
|
||||
|
|
Loading…
Reference in a new issue