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

postgresql_user: fix documentation formatting (#1219) (#1220)

* postgresql_user: fix documentation formatting

* fix

(cherry picked from commit 3b9be01d5b)

Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
patchback[bot] 2020-11-03 14:55:28 +03:00 committed by GitHub
parent 130709348d
commit 0005df8910
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,8 +38,8 @@ options:
plain text format. plain text format.
- When passing an MD5-hashed password, you must generate it with the format - When passing an MD5-hashed password, you must generate it with the format
C('str["md5"] + md5[ password + username ]'), resulting in a total of C('str["md5"] + md5[ password + username ]'), resulting in a total of
35 characters. An easy way to do this is C(echo "md5$(echo -n 35 characters. An easy way to do this is
'verysecretpasswordJOE' | md5sum | awk '{print $1}')"). C(echo "md5`echo -n 'verysecretpasswordJOE' | md5sum | awk '{print $1}'`").
- Note that if the provided password string is already in MD5-hashed - Note that if the provided password string is already in MD5-hashed
format, then it is used as-is, regardless of I(encrypted) option. format, then it is used as-is, regardless of I(encrypted) option.
type: str type: str