Matrix Docker Ansible eploy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

38 rindas
2.2 KiB

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