Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

41 linhas
2.5 KiB

  1. # SPDX-FileCopyrightText: 2023 Cody Wyatt Neiman
  2. # SPDX-FileCopyrightText: 2024 - 2025 Slavi Pantaleev
  3. # SPDX-FileCopyrightText: 2025 Suguru Hirahara
  4. #
  5. # SPDX-License-Identifier: AGPL-3.0-or-later
  6. ---
  7. - name: Fail if required mautrix-slack settings not defined
  8. ansible.builtin.fail:
  9. msg: >-
  10. You need to define a required configuration setting (`{{ item.name }}`).
  11. when: "item.when | bool and vars[item.name] == ''"
  12. with_items:
  13. - {'name': 'matrix_mautrix_slack_appservice_token', when: true}
  14. - {'name': 'matrix_mautrix_slack_homeserver_address', when: true}
  15. - {'name': 'matrix_mautrix_slack_homeserver_token', when: true}
  16. - {'name': 'matrix_mautrix_slack_database_hostname', when: "{{ matrix_mautrix_slack_database_engine == 'postgres' }}"}
  17. - {'name': 'matrix_mautrix_slack_container_network', when: true}
  18. - name: Fail if appservice-slack and mautrix-slack have conflicting bot usernames
  19. when: matrix_appservice_slack_enabled | default(False) | bool and matrix_mautrix_slack_appservice_bot_username == matrix_appservice_slack_bot_name | default ('')
  20. ansible.builtin.fail:
  21. msg: |
  22. The appservice-slack and mautrix-slack components are both enabled and use the same bot username ({{ matrix_mautrix_slack_appservice_bot_username }}), as per their default configuration, which causes a conflict.
  23. To resolve the conflict, make one of these components use a different username.
  24. Consider either changing `matrix_mautrix_slack_appservice_bot_username` (the bot username for the mautrix-slack component) or `matrix_appservice_slack_bot_name` (the bot username for the appservice-slack component).
  25. We recommend that you change the username for the newly-added (and yet unused) component.
  26. - name: (Deprecation) Catch and report renamed mautrix-slack variables
  27. ansible.builtin.fail:
  28. msg: >-
  29. Your configuration contains a variable, which now has a different name.
  30. Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
  31. when: "item.old in vars"
  32. with_items:
  33. - {'old': 'matrix_mautrix_slack_login_shared_secret', 'new': '<removed>'}
  34. - {'old': 'matrix_mautrix_slack_bridge_login_shared_secret_map', 'new': '<superseded by matrix_mautrix_slack_double_puppet_secrets>'}
  35. - {'old': 'matrix_mautrix_slack_bridge_double_puppet_server_map', 'new': '<removed>'}
  36. - {'old': 'matrix_mautrix_slack_docker_image_name_prefix', 'new': 'matrix_mautrix_slack_docker_image_registry_prefix'}