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.
 
 

32 líneas
1.7 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 lookup('vars', item.name, default='') | string | length == 0"
  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: (Deprecation) Catch and report renamed mautrix-slack variables
  19. ansible.builtin.fail:
  20. msg: >-
  21. Your configuration contains a variable, which now has a different name.
  22. Please rename the variable (`{{ item.old }}` -> `{{ item.new }}`) on your configuration file (vars.yml).
  23. when: "lookup('ansible.builtin.varnames', ('^' + item.old + '$'), wantlist=True) | length > 0"
  24. with_items:
  25. - {'old': 'matrix_mautrix_slack_login_shared_secret', 'new': '<removed>'}
  26. - {'old': 'matrix_mautrix_slack_bridge_login_shared_secret_map', 'new': '<superseded by matrix_mautrix_slack_double_puppet_secrets>'}
  27. - {'old': 'matrix_mautrix_slack_bridge_double_puppet_server_map', 'new': '<removed>'}
  28. - {'old': 'matrix_mautrix_slack_docker_image_name_prefix', 'new': 'matrix_mautrix_slack_docker_image_registry_prefix'}