From 93c331b22261db1591e1c9f0a2f2843903023ad4 Mon Sep 17 00:00:00 2001 From: arianitu Date: Mon, 3 Mar 2014 16:03:54 -0500 Subject: [PATCH 1/2] minor typo in playbooks_variables.rst so so, this should probably be fixed! --- docsite/rst/playbooks_variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst index 09daac303b..a04da9d524 100644 --- a/docsite/rst/playbooks_variables.rst +++ b/docsite/rst/playbooks_variables.rst @@ -43,7 +43,7 @@ Easy enough, let's move on. Variables Defined in Inventory `````````````````````````````` -We've actually already covered a lot about variables in another section, so so far this shouldn't be terribly new, but +We've actually already covered a lot about variables in another section, so far this shouldn't be terribly new, but a bit of a refresher. Often you'll want to set variables based on what groups a machine is in. For instance, maybe machines in Boston From fdf6ab016e47ea818fb2794fe780e813d568fbff Mon Sep 17 00:00:00 2001 From: arianitu Date: Mon, 3 Mar 2014 16:08:40 -0500 Subject: [PATCH 2/2] Update playbooks_variables.rst Another minor typo. --- docsite/rst/playbooks_variables.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/playbooks_variables.rst b/docsite/rst/playbooks_variables.rst index a04da9d524..bdb31577ed 100644 --- a/docsite/rst/playbooks_variables.rst +++ b/docsite/rst/playbooks_variables.rst @@ -101,7 +101,7 @@ Inside a template you automatically have access to all of the variables that are it's more than that -- you can also read variables about other hosts. We'll show how to do that in a bit. .. note:: ansible allows Jinja2 loops and conditionals in templates, but in playbooks, we do not use them. Ansible - templates are pure machine-parseable YAML. This is an rather important feature as it means it is possible to code-generate + templates are pure machine-parseable YAML. This is a rather important feature as it means it is possible to code-generate pieces of files, or to have other ecosystem tools read Ansible files. Not everyone will need this but it can unlock possibilities.