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

19 строки
738 B

  1. ---
  2. - 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. - set_fact:
  7. matrix_synapse_container_extra_arguments: >
  8. {{ matrix_synapse_container_extra_arguments|default([]) }}
  9. +
  10. ["--mount type=bind,src={{ matrix_beeper_linkedin_config_path }}/registration.yaml,dst=/matrix-beeper-linkedin-registration.yaml,ro"]
  11. matrix_synapse_app_service_config_files: >
  12. {{ matrix_synapse_app_service_config_files|default([]) }}
  13. +
  14. {{ ["/matrix-beeper-linkedin-registration.yaml"] }}
  15. when: matrix_beeper_linkedin_enabled|bool