community.general/lib/ansible/modules/database/postgresql
Alexhha 99aafcc8ca 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
2018-09-10 16:00:18 -04:00
..
__init__.py
postgresql_db.py Surround top-level function and class definitions with two blank lines. 2018-07-31 12:06:56 -07:00
postgresql_ext.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
postgresql_lang.py More validate module fixes (#39097) 2018-04-24 18:05:50 +01:00
postgresql_privs.py added version info and removed 'bare' exception 2018-08-02 18:19:43 -04:00
postgresql_schema.py Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
postgresql_user.py Update postgresql_user.py (#45146) 2018-09-10 16:00:18 -04:00