From 1037c211d9dd675b5ec944284ffa953a5872a191 Mon Sep 17 00:00:00 2001 From: Richlv Date: Sun, 8 Oct 2017 20:52:30 +0300 Subject: [PATCH] Update playbooks_lookups.rst fix doublequote being used in place of the colon --- docs/docsite/rst/playbooks_lookups.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/playbooks_lookups.rst b/docs/docsite/rst/playbooks_lookups.rst index 43606608e9..c424bfea9e 100644 --- a/docs/docsite/rst/playbooks_lookups.rst +++ b/docs/docsite/rst/playbooks_lookups.rst @@ -87,7 +87,7 @@ Starting in Ansible version 1.4, password accepts a "chars" parameter to allow d - name: 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,digits,hexdigits,punctuation') }}" + password: "{{ lookup('password', '/tmp/passwordfile chars=ascii_letters,digits,hexdigits,punctuation') }}" priv: "{{ client }}_{{ tier }}_{{ role }}.*:ALL" # (...)