summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2012-02-28 03:13:44 +0100
committerMichael DeHaan <michael.dehaan@gmail.com>2012-02-28 03:13:44 +0100
commit757574ee035dbf4a32eb428c4ac0731a94a818b4 (patch)
treee9caee068c354db3684e765f858bc4770867cc8b /README.md
parentFurther README tweaks (diff)
downloadansible-757574ee035dbf4a32eb428c4ac0731a94a818b4.tar.xz
ansible-757574ee035dbf4a32eb428c4ac0731a94a818b4.zip
Make templating example make more sense
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index fa83a4056a..db136a4605 100644
--- a/README.md
+++ b/README.md
@@ -88,9 +88,9 @@ Templating
JSON files can be placed for template metadata using Jinja2. Variables
placed by 'setup' can be reused between ansible runs.
- * ansible -p "*" -n setup -a "ntp_server=192.168.1.1"
+ * ansible -p "*" -n setup -a "favcolor=red ntp_server=192.168.1.1"
* ansible -p "*" -n template /srv/motd.j2 /etc/motd
- * ansible -p "*" -n template /srv/foo.j2 /etc/foo
+ * ansible -p "*" -n template /srv/ntp.j2 /etc/ntp.conf
Very soon, templates will be able to also include facter and ohai
variables.