summaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authorMichael Scherer <misc@zarb.org>2016-03-19 13:40:58 +0100
committerMichael Scherer <misc@zarb.org>2016-03-19 13:40:58 +0100
commit4396c26af56d93ed7260fcf5392fd22e83086e33 (patch)
tree65407bc9cc52f141e11fcff41a6431a78cf2ab94 /files
parent6b2bc9df04b66c67c42c67c19df96af9b47b0bde (diff)
downloadansible-modules-extras-4396c26af56d93ed7260fcf5392fd22e83086e33.tar.gz
Reindent with_items, fix #1849
Diffstat (limited to 'files')
-rw-r--r--files/blockinfile.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/blockinfile.py b/files/blockinfile.py
index c2e449b2..e31799da 100644
--- a/files/blockinfile.py
+++ b/files/blockinfile.py
@@ -144,10 +144,10 @@ EXAMPLES = r"""
block: |
{{item.name}} {{item.ip}}
marker: "# {mark} ANSIBLE MANAGED BLOCK {{item.name}}"
- with_items:
- - { name: host1, ip: 10.10.1.10 }
- - { name: host2, ip: 10.10.1.11 }
- - { name: host3, ip: 10.10.1.12 }
+ with_items:
+ - { name: host1, ip: 10.10.1.10 }
+ - { name: host2, ip: 10.10.1.11 }
+ - { name: host3, ip: 10.10.1.12 }
"""