From 8fe3678b608dedc801c10ebce445f6f8eba10323 Mon Sep 17 00:00:00 2001 From: Victor Castell Date: Tue, 17 Jun 2014 12:58:07 +0200 Subject: [PATCH] Numbers is not a string module --- docsite/rst/playbooks_lookups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_lookups.rst b/docsite/rst/playbooks_lookups.rst index dbc85c14daa..3eb5ebb35cc 100644 --- a/docsite/rst/playbooks_lookups.rst +++ b/docsite/rst/playbooks_lookups.rst @@ -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_letters,numbers,digits,hexdigits,punctuation') }}" + password="{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits,hexdigits,punctuation') }}" priv={{ client }}_{{ tier }}_{{ role }}.*:ALL (...)