matrix: Formatting
This commit is contained in:
parent
ae240d1bbb
commit
478d69dabb
3 changed files with 6 additions and 5 deletions
|
@ -23,7 +23,7 @@
|
|||
services:
|
||||
- delegate
|
||||
state: present
|
||||
project_src: "{{ matrix_install_location }}"
|
||||
project_src: "{{ matrix_install_location }}"
|
||||
restarted: yes
|
||||
tags:
|
||||
- docker
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
"m.homeserver": {
|
||||
"base_url": "https://{{ matrix_synapse_domain }}"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue