Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
790 B

  1. ---
  2. # Our base configuration (`matrix_appservice_irc_configuration_yaml`) is not enough to
  3. # let the playbook run without errors.
  4. #
  5. # Unless the final configuration (`matrix_appservice_irc_configuration`) contains an `ircService` definition,
  6. # we'd fail generating the registration.yaml file with a non-helpful error.
  7. #
  8. # This is a safety check to ensure we fail earlier and in a nicer way.
  9. - name: Fail if no additional configuration provided
  10. fail:
  11. msg: >-
  12. Your Appservice IRC configuration is incomplete (lacking an `ircService` key).
  13. You need to define additional configuration in `matrix_appservice_irc_configuration_extension_yaml` or to override `matrix_appservice_irc_configuration`.
  14. when: "matrix_appservice_irc_configuration.ircService|default(none) is none"