From 48ded5e49337e805ee3a185f2e731cb4ead27ca4 Mon Sep 17 00:00:00 2001 From: James Tanner Date: Tue, 12 Nov 2013 08:54:19 -0500 Subject: [PATCH] Fix typos in docsite password lookup section --- docsite/rst/playbooks_lookups.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docsite/rst/playbooks_lookups.rst b/docsite/rst/playbooks_lookups.rst index 7178cb06c1..6a69ba230a 100644 --- a/docsite/rst/playbooks_lookups.rst +++ b/docsite/rst/playbooks_lookups.rst @@ -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: - mysql_user: name={{ client }} - password="{{ lookup('password', '/tmp/passwordfile chars=digits,') }}" + password="{{ lookup('password', '/tmp/passwordfile chars=digits') }}" priv={{ client }}_{{ tier }}_{{ role }}.*:ALL # 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: