Matrix Docker Ansible eploy
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

53 wiersze
1.5 KiB

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