Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 строки
592 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. - name: (Deprecation) Catch and report old settings
  10. ansible.builtin.fail:
  11. msg: >-
  12. Your configuration contains a variable, which is deprecated - Please check the documentation on how to configure the matrix-registration-bot.
  13. when: "item in vars"
  14. with_items:
  15. - "matrix_bot_matrix_registration_bot_bot_access_token"