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

23 строки
876 B

  1. ---
  2. - ansible.builtin.set_fact:
  3. matrix_systemd_services_list: "{{ matrix_systemd_services_list + ['matrix-beeper-linkedin.service'] }}"
  4. when: matrix_beeper_linkedin_enabled | bool
  5. # If the matrix-synapse role is not used, these variables may not exist.
  6. - ansible.builtin.set_fact:
  7. matrix_homeserver_container_runtime_injected_arguments: >
  8. {{
  9. matrix_homeserver_container_runtime_injected_arguments | default([])
  10. +
  11. ["--mount type=bind,src={{ matrix_beeper_linkedin_config_path }}/registration.yaml,dst=/matrix-beeper-linkedin-registration.yaml,ro"]
  12. }}
  13. matrix_homeserver_app_service_runtime_injected_config_files: >
  14. {{
  15. matrix_homeserver_app_service_runtime_injected_config_files | default([])
  16. +
  17. ["/matrix-beeper-linkedin-registration.yaml"]
  18. }}
  19. when: matrix_beeper_linkedin_enabled | bool