Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

18 řádky
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"