From b59b5a286b3a0247a9a6218be9fd2f24fc318d6c Mon Sep 17 00:00:00 2001 From: Matthew Huxtable Date: Mon, 22 Feb 2016 16:07:48 +0000 Subject: [PATCH] docsite: add missing closing square bracket --- docsite/rst/playbooks_delegation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_delegation.rst b/docsite/rst/playbooks_delegation.rst index fa808abb65b..eb3c33d60df 100644 --- a/docsite/rst/playbooks_delegation.rst +++ b/docsite/rst/playbooks_delegation.rst @@ -147,7 +147,7 @@ In 2.0, the directive `delegate_facts` may be set to `True` to assign the task's setup: delegate_to: "{{item}}" delegate_facts: True - with_items: "{{groups['dbservers'}}" + with_items: "{{groups['dbservers']}}" The above will gather facts for the machines in the dbservers group and assign the facts to those machines and not to app_servers. This way you can lookup `hostvars['dbhost1']['default_ipv4_addresses'][0]` even though dbservers were not part of the play, or left out by using `--limit`.