From 2aae5e53de04091601424b529f6157e0d70d269a Mon Sep 17 00:00:00 2001 From: Javier Candeira Date: Sun, 22 Sep 2013 22:17:28 +1000 Subject: [PATCH] fix examples for with_nested --- docsite/latest/rst/playbooks2.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docsite/latest/rst/playbooks2.rst b/docsite/latest/rst/playbooks2.rst index 60cf1dae63..4c676d3550 100644 --- a/docsite/latest/rst/playbooks2.rst +++ b/docsite/latest/rst/playbooks2.rst @@ -500,15 +500,15 @@ Nested Loops Loops can be nested as well:: - name: give users access to multiple databases - mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:* + mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:ALL password=foo with_nested: - [ 'alice', 'bob', 'eve' ] - [ 'clientdb', 'employeedb', 'providerdb' ] -As with the case of 'with_items' above, you can use previously defined variables. Just specify the variable'sname without templating it with '{{ }}':: +As with the case of 'with_items' above, you can use previously defined variables. Just specify the variable's name without templating it with '{{ }}':: - name: here, 'users' contains the above list of employees - mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:* + mysql_user: name={{ item[0] }} priv={{ item[1] }}.*:ALL password=foo with_nested: - users - [ 'clientdb', 'employeedb', 'providerdb' ]