Matrix Docker Ansible eploy
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

19 rindas
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"