Show more whitespace throughout playbook examples to encourage better standards in first playbooks folks write.

This commit is contained in:
Michael DeHaan 2014-02-28 14:18:44 -05:00
commit a6b4b9a751
8 changed files with 53 additions and 6 deletions

View file

@ -21,7 +21,9 @@ Contents can be read off the filesystem as follows::
- hosts: all
vars:
contents: "{{ lookup('file', '/etc/foo.txt') }}"
tasks:
- debug: msg="the value of foo.txt is {{ contents }}"
.. _password_lookup:
@ -128,6 +130,7 @@ template)::
motd_value: "{{ lookup('file', '/etc/motd') }}"
tasks:
- debug: msg="motd value is {{ motd_value }}"
.. seealso::