1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix typo in examples in Lookup/password plugin. (#35022)

This commit is contained in:
Nick Wilde 2018-02-08 18:01:23 -08:00 committed by Brian Coca
parent efacf0dd03
commit aa09ed1a88

View file

@ -15,7 +15,7 @@ DOCUMENTATION = """
- Maykel Moya <mmoya@speedyrails.com> - Maykel Moya <mmoya@speedyrails.com>
short_description: retrieve or generate a random password, stored in a file short_description: retrieve or generate a random password, stored in a file
description: description:
- generates a random plaintext password and stores it in a file at a given filepath. - Generates a random plaintext password and stores it in a file at a given filepath.
- If the file exists previously, it will retrieve its contents, behaving just like with_file. - If the file exists previously, it will retrieve its contents, behaving just like with_file.
- 'Usage of variables like C("{{ inventory_hostname }}") in the filepath can be used to set up random passwords per host, - 'Usage of variables like C("{{ inventory_hostname }}") in the filepath can be used to set up random passwords per host,
which simplifies password management in C("host_vars") variables.' which simplifies password management in C("host_vars") variables.'
@ -36,7 +36,7 @@ DOCUMENTATION = """
chars: chars:
version_added: "1.4" version_added: "1.4"
description: description:
- Define comma separeted list of names that compose a custom character set in the generated passwords. - Define comma separated list of names that compose a custom character set in the generated passwords.
- 'By default generated passwords contain a random mix of upper and lowercase ASCII letters, the numbers 0-9 and punctuation (". , : - _").' - 'By default generated passwords contain a random mix of upper and lowercase ASCII letters, the numbers 0-9 and punctuation (". , : - _").'
- "They can be either parts of Python's string module attributes (ascii_letters,digits, etc) or are used literally ( :, -)." - "They can be either parts of Python's string module attributes (ascii_letters,digits, etc) or are used literally ( :, -)."
- "To enter comma use two commas ',,' somewhere - preferably at the end. Quotes and double quotes are not supported." - "To enter comma use two commas ',,' somewhere - preferably at the end. Quotes and double quotes are not supported."
@ -79,7 +79,7 @@ EXAMPLES = """
- name: create a mysql user with a random password using many different char sets - name: create a mysql user with a random password using many different char sets
mysql_user: mysql_user:
name: "{{ client }}" name: "{{ client }}"
password" "{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits,hexdigits,punctuation') }}" password: "{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits,hexdigits,punctuation') }}"
priv: "{{ client }}_{{ tier }}_{{ role }}.*:ALL" priv: "{{ client }}_{{ tier }}_{{ role }}.*:ALL"
""" """