2
0

mise au point ex variable 2

This commit is contained in:
2018-09-28 13:31:05 +02:00
parent 9a2d09cb70
commit 8bcc522009
5 changed files with 36 additions and 21 deletions

View File

@@ -29,7 +29,7 @@
- name: create documentroot
file:
name: "/var/www/html/{{ item.documentroot }}"
name: "{{ item.documentroot }}"
state: directory
with_items:
- "{{ apache_vhosts }}"
@@ -37,7 +37,7 @@
- name: create index file
copy:
src: index.html
dest: "/var/www/html/{{ item.documentroot }}/index.html"
dest: "{{ item.documentroot }}/index.html"
mode: 0644
with_items:
- "{{ apache_vhosts }}"
- "{{ apache_vhosts }}"