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

Fix typos in docsite password lookup section

This commit is contained in:
James Tanner 2013-11-12 08:54:19 -05:00
parent 6008ea40ee
commit 48ded5e493

View file

@ -67,7 +67,7 @@ Starting in version 1.4, password accepts a "chars" parameter to allow defining
# create a mysql user with a random password using only digits: # create a mysql user with a random password using only digits:
- mysql_user: name={{ client }} - mysql_user: name={{ client }}
password="{{ lookup('password', '/tmp/passwordfile chars=digits,') }}" password="{{ lookup('password', '/tmp/passwordfile chars=digits') }}"
priv={{ client }}_{{ tier }}_{{ role }}.*:ALL priv={{ client }}_{{ tier }}_{{ role }}.*:ALL
# create a mysql user with a random password using many different char sets: # create a mysql user with a random password using many different char sets:
@ -77,7 +77,7 @@ Starting in version 1.4, password accepts a "chars" parameter to allow defining
(...) (...)
To enter comma use two commas ',,' somewhere - preferably at the end Qoutes and double qoutes are not supported To enter comma use two commas ',,' somewhere - preferably at the end. Quotes and double qoutes are not supported.
.. _more_lookups: .. _more_lookups: