1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #7437 from mrdeathless/patch-1

Add missing space between var and delimeter
This commit is contained in:
Michael DeHaan 2014-05-18 22:38:06 -04:00
commit 63505cd8b8

View file

@ -93,7 +93,7 @@ And that will provide the most basic form of variable substitution.
This is also valid directly in playbooks, and you'll occasionally want to do things like:: This is also valid directly in playbooks, and you'll occasionally want to do things like::
template: src=foo.cfg.j2 dest={{ remote_install_path}}/foo.cfg template: src=foo.cfg.j2 dest={{ remote_install_path }}/foo.cfg
In the above example, we used a variable to help decide where to place a file. In the above example, we used a variable to help decide where to place a file.