community.general/lib/ansible/modules/database
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
..
influxdb influxdb_query: fix use of common return results (#39626) 2018-05-05 14:11:42 +02:00
misc Add src parameter to elasticsearch_plugin (#39915) 2018-07-20 11:40:11 -04:00
mongodb mongodb_user: don't call buildInfo with Pymongo > 3.5 (#42350) 2018-08-30 03:01:28 -04:00
mssql Clean up BOTMETA.yml (#44574) 2018-08-24 19:43:35 -04:00
mysql Add support for mysqldump --ignore-table switch (#33065) 2018-05-28 17:31:55 +05:30
postgresql Update postgresql_user.py (#45146) 2018-09-10 16:00:18 -04:00
proxysql Update proxysql_query_rules.py (#43877) 2018-08-16 19:52:08 +02:00
vertica Clean up module documentation (#36909) 2018-03-15 22:15:24 +01:00
__init__.py