Matrix Docker Ansible eploy
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

19 satır
657 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_matrix_homeserver_url"
  10. - name: (Deprecation) Catch and report old settings
  11. ansible.builtin.fail:
  12. msg: >-
  13. Your configuration contains a variable, which is deprecated - Please check the documentation on how to configure the matrix-registration-bot.
  14. when: "item in vars"
  15. with_items:
  16. - "matrix_bot_matrix_registration_bot_bot_access_token"