mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Update postgresql_user.py (#45146)
* Update postgresql_user.py md5sum generates output with hypen. Something like the following ``` $ echo "md5$(echo -n 'verysecretpasswordJOE' | md5sum)" md5d011966da94d776cf59bf6dbde240e5d - ``` We need to remove hyphen from the output. Also the command by itself is incorrect ``` echo "md5$(echo -n 'verysecretpasswordJOE' | md5sum") ``` double quotes must be after right parenthesis ``` echo "md5$(echo -n 'verysecretpasswordJOE' | md5sum)" ``` +label: docsite_pr * Update postgresql_user.py Add curly braces
This commit is contained in:
parent
263b9fade8
commit
99aafcc8ca
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ options:
|
||||||
- When passing a hashed password it must be generated with the format
|
- When passing a hashed password it must be generated 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 C(echo "md5$(echo -n
|
||||||
'verysecretpasswordJOE' | md5sum)").
|
'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 C(encrypted) parameter.
|
format, then it is used as-is, regardless of C(encrypted) parameter.
|
||||||
db:
|
db:
|
||||||
|
|
Loading…
Reference in a new issue