Commit 4f949f3b by Victor Castell

ascii should be ascii_letters

parent 4be33b6a
......@@ -73,7 +73,7 @@ Starting in version 1.4, password accepts a "chars" parameter to allow defining
# create a mysql user with a random password using only ascii letters:
- mysql_user: name={{ client }}
password="{{ lookup('password', '/tmp/passwordfile chars=ascii') }}"
password="{{ lookup('password', '/tmp/passwordfile chars=ascii_letters') }}"
priv={{ client }}_{{ tier }}_{{ role }}.*:ALL
# create a mysql user with a random password using only digits:
......@@ -83,7 +83,7 @@ Starting in version 1.4, password accepts a "chars" parameter to allow defining
# create a mysql user with a random password using many different char sets:
- mysql_user: name={{ client }}
password="{{ lookup('password', '/tmp/passwordfile chars=ascii,numbers,digits,hexdigits,punctuation') }}"
password="{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,numbers,digits,hexdigits,punctuation') }}"
priv={{ client }}_{{ tier }}_{{ role }}.*:ALL
(...)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment