Matrix Docker Ansible eploy
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 

21 рядки
849 B

  1. ---
  2. - name: Fail if required settings not defined
  3. ansible.builtin.fail:
  4. msg: >-
  5. You need to define a required configuration setting (`{{ item }}`).
  6. when: "vars[item] == ''"
  7. with_items:
  8. - "matrix_bot_matrix_registration_bot_bot_password"
  9. - "matrix_bot_matrix_registration_bot_api_base_url"
  10. - name: (Deprecation) Catch and report renamed settings
  11. ansible.builtin.fail:
  12. msg: >-
  13. Your configuration contains a variable, which now has a different name.
  14. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  15. when: "item.old in vars"
  16. with_items:
  17. - {'old': 'matrix_bot_matrix_registration_bot_bot_access_token', 'new': '<removed>'}
  18. - {'old': 'matrix_bot_matrix_registration_bot_matrix_homeserver_url', 'new': 'matrix_bot_matrix_registration_bot_api_base_url'}