change 'name' to a better description for variable example.

'make a directory' is a bad description, since the command "template …"
doesn't actually create a directory.
This commit is contained in:
Wes Johnson 2012-05-03 16:54:41 -07:00
parent 5954a7d8cc
commit dfd671d60e

View file

@ -171,7 +171,7 @@ Variables can be used in action lines. Suppose you defined
a variable called 'vhost' in the 'vars' section, you could do this::
tasks:
- name: make a directory
- name: create a virtual host file for $vhost
action: template src=somefile.j2 dest=/etc/httpd/conf.d/$vhost
Those same variables are usable in templates, which we'll get to later.