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.
 
 

20 líneas
771 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_reminder_bot_matrix_user_password"
  9. - "matrix_bot_matrix_reminder_bot_reminders_timezone"
  10. - name: (Deprecation) Catch and report renamed settings
  11. ansible.builtin.fail:
  12. msg: >-
  13. Your configuration contains a variable, which now has a different name.
  14. Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
  15. when: "item.old in vars"
  16. with_items:
  17. - {'old': 'matrix_bot_matrix_reminder_bot_container_self_build', 'new': 'matrix_bot_matrix_reminder_bot_container_image_self_build'}