Fix weird path creation

Fixes #403 (Github Issue).
This commit is contained in:
Slavi Pantaleev
2020-03-18 18:24:03 +02:00
parent b6cf5758cc
commit 027056e027
6 changed files with 30 additions and 30 deletions

View File

@ -6,14 +6,14 @@
- name: Ensure Matrix Coturn path exists
file:
path: "{{ item }}"
path: "{{ item.path }}"
state: directory
mode: 0750
owner: "{{ matrix_user_username }}"
group: "{{ matrix_user_username }}"
with_items:
- { src: "{{ matrix_coturn_docker_src_files_path }}", when: "{{ matrix_coturn_container_image_self_build }}"}
when: matrix_riot_web_enabled|bool
- { path: "{{ matrix_coturn_docker_src_files_path }}", when: "{{ matrix_coturn_container_image_self_build }}"}
when: matrix_riot_web_enabled|bool and item.when
- name: Ensure Coturn image is pulled
docker_image: