Matrix Docker Ansible eploy
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

18 líneas
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"