diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2013-05-05 13:38:17 -0400 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2013-05-05 13:38:17 -0400 |
commit | f57e57ba54eaeaab1bbefc3dba4c4592c89ed86c (patch) | |
tree | bb9611bc4e82634344a6be6a640e1b3115c683a5 /examples | |
parent | 79c2a34fa079635f080bb0d74a39ccb386583399 (diff) | |
download | ansible-f57e57ba54eaeaab1bbefc3dba4c4592c89ed86c.tar.gz |
Update loop_plugins example
Diffstat (limited to 'examples')
-rw-r--r-- | examples/playbooks/loop_plugins.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/playbooks/loop_plugins.yml b/examples/playbooks/loop_plugins.yml index 75966714a4..0ea6395172 100644 --- a/examples/playbooks/loop_plugins.yml +++ b/examples/playbooks/loop_plugins.yml @@ -14,7 +14,7 @@ - file: dest=/etc/fooapp state=directory - - copy: src=$item dest=/etc/fooapp/ owner=root mode=600 + - copy: src={{ item }} dest=/etc/fooapp/ owner=root mode=600 with_fileglob: /playbooks/files/fooapp/* |