From e2a871b49e6063734a0aab5a8dfa58ff7529bfa7 Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Wed, 18 Jan 2017 14:14:00 -0500 Subject: [PATCH] corrected which app adds plugins --- docs/docsite/rst/playbooks_templating.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/playbooks_templating.rst b/docs/docsite/rst/playbooks_templating.rst index 455182c2e6d..bae594f71fc 100644 --- a/docs/docsite/rst/playbooks_templating.rst +++ b/docs/docsite/rst/playbooks_templating.rst @@ -2,7 +2,7 @@ Templating (Jinja2) =================== As already referenced in the variables section, Ansible uses Jinja2 templating to enable dynamic expressions and access to variables. -Jinja2 also greatly expands the number of filters and tests available, as well as adding a new plugin type: lookups. +Ansible greatly expands the number of filters and tests available, as well as adding a new plugin type: lookups. Please note that all templating happens on the Ansible controller before the task is sent and executed on the target machine. This is done to minimize the requirements on the target (jinja2 is only required on the controller) and to be able to pass the minimal information needed for the task, so the target machine does not need a copy of all the data that the controller has access to.