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:
|
services:
|
||||||
- delegate
|
- delegate
|
||||||
state: present
|
state: present
|
||||||
project_src: "{{ matrix_install_location }}"
|
project_src: "{{ matrix_install_location }}"
|
||||||
restarted: yes
|
restarted: yes
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
src: "{{ item }}"
|
src: "{{ item }}"
|
||||||
dest: "{{ matrix_install_location }}/{{ item }}"
|
dest: "{{ matrix_install_location }}/{{ item }}"
|
||||||
setype: "container_file_t"
|
setype: "container_file_t"
|
||||||
mode: 0644
|
mode: '0644'
|
||||||
owner: 'root'
|
owner: 'root'
|
||||||
group: 'root'
|
group: 'root'
|
||||||
with_items:
|
with_items:
|
||||||
|
@ -86,7 +86,7 @@
|
||||||
src: "delegate-nginx.conf"
|
src: "delegate-nginx.conf"
|
||||||
dest: "{{ matrix_install_location }}/nginx.conf"
|
dest: "{{ matrix_install_location }}/nginx.conf"
|
||||||
setype: "container_file_t"
|
setype: "container_file_t"
|
||||||
mode: 0600
|
mode: '0600'
|
||||||
owner: 'root'
|
owner: 'root'
|
||||||
group: 'root'
|
group: 'root'
|
||||||
tags:
|
tags:
|
||||||
|
@ -109,7 +109,8 @@
|
||||||
become: true
|
become: true
|
||||||
|
|
||||||
- name: Check if homeserver.yaml (config) exists
|
- 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
|
register: matrix_synapse_homeserver_yaml
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
"m.homeserver": {
|
"m.homeserver": {
|
||||||
"base_url": "https://{{ matrix_synapse_domain }}"
|
"base_url": "https://{{ matrix_synapse_domain }}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue