matrix: Formatting
This commit is contained in:
parent
ae240d1bbb
commit
478d69dabb
3 changed files with 6 additions and 5 deletions
|
@ -70,7 +70,7 @@
|
|||
src: "{{ item }}"
|
||||
dest: "{{ matrix_install_location }}/{{ item }}"
|
||||
setype: "container_file_t"
|
||||
mode: 0644
|
||||
mode: '0644'
|
||||
owner: 'root'
|
||||
group: 'root'
|
||||
with_items:
|
||||
|
@ -86,7 +86,7 @@
|
|||
src: "delegate-nginx.conf"
|
||||
dest: "{{ matrix_install_location }}/nginx.conf"
|
||||
setype: "container_file_t"
|
||||
mode: 0600
|
||||
mode: '0600'
|
||||
owner: 'root'
|
||||
group: 'root'
|
||||
tags:
|
||||
|
@ -109,7 +109,8 @@
|
|||
become: true
|
||||
|
||||
- name: Check if homeserver.yaml (config) exists
|
||||
stat: path="{{ matrix_data_location }}/homeserver.yaml"
|
||||
stat:
|
||||
path: "{{ matrix_data_location }}/homeserver.yaml"
|
||||
register: matrix_synapse_homeserver_yaml
|
||||
tags:
|
||||
- docker
|
||||
|
|
Loading…
Add table
Reference in a new issue