mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50:18 +01:00
Merge pull request #57 from KyleJamesWalker/master
Added with_items dictionary example.
This commit is contained in:
commit
497e49c965
1 changed files with 7 additions and 2 deletions
|
@ -26,5 +26,10 @@
|
|||
- testuser1
|
||||
- testuser2
|
||||
|
||||
|
||||
|
||||
- name: copy templates
|
||||
template: src={{ item.src }} dest={{ item.dest }}
|
||||
with_items:
|
||||
- src: templates/testsource1
|
||||
dest: /example/dest1/test.conf
|
||||
- src: templates/testsource2
|
||||
dest: /example/dest2/test.conf
|
||||
|
|
Loading…
Reference in a new issue