Matrix Docker Ansible eploy
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 

22 lignes
883 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: "{{ matrix_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"