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

65 строки
3.5 KiB

  1. # matrix-reminder-bot is a bot for one-off and recurring reminders
  2. # See: https://github.com/anoadragon453/matrix-reminder-bot
  3. matrix_bot_matrix_reminder_bot_enabled: true
  4. matrix_bot_matrix_reminder_bot_docker_image: "docker.io/anoa/matrix-reminder-bot:release-v0.2.0"
  5. matrix_bot_matrix_reminder_bot_docker_image_force_pull: "{{ matrix_bot_matrix_reminder_bot_docker_image.endswith(':latest') }}"
  6. matrix_bot_matrix_reminder_bot_base_path: "{{ matrix_base_data_path }}/matrix-reminder-bot"
  7. matrix_bot_matrix_reminder_bot_config_path: "{{ matrix_bot_matrix_reminder_bot_base_path }}/config"
  8. matrix_bot_matrix_reminder_bot_data_path: "{{ matrix_bot_matrix_reminder_bot_base_path }}/data"
  9. matrix_bot_matrix_reminder_bot_data_store_path: "{{ matrix_bot_matrix_reminder_bot_data_path }}/store"
  10. # A list of extra arguments to pass to the container
  11. matrix_bot_matrix_reminder_bot_container_extra_arguments: []
  12. # List of systemd services that matrix-bot-matrix-reminder-bot.service depends on
  13. matrix_bot_matrix_reminder_bot_systemd_required_services_list: ['docker.service']
  14. # List of systemd services that matrix-bot-matrix-reminder-bot.service wants
  15. matrix_bot_matrix_reminder_bot_systemd_wanted_services_list: []
  16. # The bot's username. This user needs to be created manually beforehand.
  17. # Also see `matrix_bot_matrix_reminder_bot_user_password`.
  18. matrix_bot_matrix_reminder_bot_matrix_user_id_localpart: "bot.matrix-reminder-bot"
  19. matrix_bot_matrix_reminder_bot_matrix_user_id: '@{{ matrix_bot_matrix_reminder_bot_matrix_user_id_localpart }}:{{ matrix_domain }}'
  20. # The password that the bot uses to authenticate.
  21. matrix_bot_matrix_reminder_bot_matrix_user_password: ''
  22. matrix_bot_matrix_reminder_bot_matrix_homeserver_url: 'http://matrix-synapse:8008'
  23. # The timezone to use when creating reminders.
  24. # Examples: 'Europe/London', 'Etc/UTC'
  25. matrix_bot_matrix_reminder_bot_reminders_timezone: ''
  26. # Default configuration template which covers the generic use case.
  27. # You can customize it by controlling the various variables inside it.
  28. #
  29. # For a more advanced customization, you can extend the default (see `matrix_bot_matrix_reminder_bot_configuration_extension_yaml`)
  30. # or completely replace this variable with your own template.
  31. matrix_bot_matrix_reminder_bot_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
  32. matrix_bot_matrix_reminder_bot_configuration_extension_yaml: |
  33. # Your custom YAML configuration goes here.
  34. # This configuration extends the default starting configuration (`matrix_bot_matrix_reminder_bot_configuration_yaml`).
  35. #
  36. # You can override individual variables from the default configuration, or introduce new ones.
  37. #
  38. # If you need something more special, you can take full control by
  39. # completely redefining `matrix_bot_matrix_reminder_bot_configuration_yaml`.
  40. #
  41. # Example configuration extension follows:
  42. #
  43. # matrix:
  44. # device_name: My-Reminder-Bot
  45. matrix_bot_matrix_reminder_bot_configuration_extension: "{{ matrix_bot_matrix_reminder_bot_configuration_extension_yaml|from_yaml if matrix_bot_matrix_reminder_bot_configuration_extension_yaml|from_yaml is mapping else {} }}"
  46. # Holds the final configuration (a combination of the default and its extension).
  47. # You most likely don't need to touch this variable. Instead, see `matrix_bot_matrix_reminder_bot_configuration_yaml`.
  48. matrix_bot_matrix_reminder_bot_configuration: "{{ matrix_bot_matrix_reminder_bot_configuration_yaml|from_yaml|combine(matrix_bot_matrix_reminder_bot_configuration_extension, recursive=True) }}"