Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
904 B

  1. ---
  2. # A previous version of the worker setup used this.
  3. # This is a temporary cleanup for people who ran that version.
  4. - name: Ensure old matrix-synapse.service.wants directory is gone
  5. ansible.builtin.file:
  6. path: "{{ devture_systemd_docker_base_systemd_path }}/matrix-synapse.service.wants"
  7. state: absent
  8. # Same. This was part of a previous version of the worker setup.
  9. # No longer necessary.
  10. - name: Ensure matrix-synapse-worker-write-pid script is removed
  11. ansible.builtin.file:
  12. path: "{{ matrix_local_bin_path }}/matrix-synapse-worker-write-pid"
  13. state: absent
  14. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/synapse/workers/setup_install.yml"
  15. when: "matrix_synapse_enabled | bool and matrix_synapse_workers_enabled | bool"
  16. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/synapse/workers/setup_uninstall.yml"
  17. when: "not matrix_synapse_workers_enabled | bool"