mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
synapse role workers setup: make configs clean action remote compatible
Many people probably didn't even know this - that ansible can be quite a bit picky about what it will be willing to work with remotely. Thanks @maxklenk !
This commit is contained in:
parent
d5932ca393
commit
414b812a29
@ -46,12 +46,18 @@
|
||||
enabled: true
|
||||
with_items: "{{ matrix_synapse_workers_enabled_list }}"
|
||||
|
||||
- name: Find worker configs to be cleaned
|
||||
find:
|
||||
path: "{{ matrix_synapse_config_dir_path }}"
|
||||
patterns: "worker.*.yaml"
|
||||
use_regex: true
|
||||
register: worker_config_files
|
||||
|
||||
- name: Ensure previous worker configs are cleaned
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
path: "{{ item.path }}"
|
||||
state: absent
|
||||
with_fileglob:
|
||||
- "{{ matrix_synapse_config_dir_path }}/worker.*.yaml"
|
||||
with_items: "{{ worker_config_files.files }}"
|
||||
|
||||
- name: Ensure creation of specific worker configs
|
||||
template:
|
||||
|
@ -25,12 +25,18 @@
|
||||
state: absent
|
||||
register: matrix_synapse_worker_systemd_service_result
|
||||
|
||||
- name: Find worker configs to be cleaned
|
||||
find:
|
||||
path: "{{ matrix_synapse_config_dir_path }}"
|
||||
patterns: "worker.*.yaml"
|
||||
use_regex: true
|
||||
register: worker_config_files
|
||||
|
||||
- name: Ensure worker configs are cleaned
|
||||
file:
|
||||
path: "{{ item }}"
|
||||
path: "{{ item.path }}"
|
||||
state: absent
|
||||
with_fileglob:
|
||||
- "{{ matrix_synapse_config_dir_path }}/worker.*.yaml"
|
||||
with_items: "{{ worker_config_files.files }}"
|
||||
|
||||
- name: Remove workers from synapse.wants list
|
||||
set_fact:
|
||||
|
Loading…
Reference in New Issue
Block a user