matrix: Formatting

This commit is contained in:
saibotk 2020-11-05 02:36:07 +01:00
parent ae240d1bbb
commit 478d69dabb
No known key found for this signature in database
GPG key ID: A3299C587D5DF523
3 changed files with 6 additions and 5 deletions

View file

@ -23,7 +23,7 @@
services:
- delegate
state: present
project_src: "{{ matrix_install_location }}"
project_src: "{{ matrix_install_location }}"
restarted: yes
tags:
- docker

View file

@ -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

View file

@ -2,4 +2,4 @@
"m.homeserver": {
"base_url": "https://{{ matrix_synapse_domain }}"
}
}
}