Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

53 líneas
1.5 KiB

  1. ---
  2. # encryption-disabler
  3. - block:
  4. - when: not matrix_synapse_ext_encryption_disabler_enabled | bool
  5. ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/encryption-disabler/setup_uninstall.yml"
  6. tags:
  7. - setup-all
  8. - setup-synapse
  9. # rest-auth
  10. - block:
  11. - when: not matrix_synapse_ext_password_provider_rest_auth_enabled | bool
  12. ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/rest-auth/setup_uninstall.yml"
  13. tags:
  14. - setup-all
  15. - setup-synapse
  16. # shared-secret-auth
  17. - block:
  18. - when: not matrix_synapse_ext_password_provider_shared_secret_auth_enabled | bool
  19. ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/shared-secret-auth/setup_uninstall.yml"
  20. tags:
  21. - setup-all
  22. - setup-synapse
  23. # ldap-auth has no uninstall tasks
  24. # synapse-simple-antispam
  25. - block:
  26. - when: not matrix_synapse_ext_spam_checker_synapse_simple_antispam_enabled | bool
  27. ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/synapse-simple-antispam/setup_uninstall.yml"
  28. tags:
  29. - setup-all
  30. - setup-synapse
  31. # mjolnir-antispam
  32. - block:
  33. - when: not matrix_synapse_ext_spam_checker_mjolnir_antispam_enabled | bool
  34. ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/mjolnir-antispam/setup_uninstall.yml"
  35. tags:
  36. - setup-all
  37. - setup-synapse
  38. # s3-storage-provider
  39. - block:
  40. - when: not matrix_synapse_ext_synapse_s3_storage_provider_enabled | bool
  41. ansible.builtin.include_tasks: "{{ role_path }}/tasks/ext/s3-storage-provider/setup_uninstall.yml"
  42. tags:
  43. - setup-all
  44. - setup-synapse