Matrix Docker Ansible eploy
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

29 řádky
932 B

  1. ---
  2. # Update Element-Web config.json with Element Call features
  3. - name: Ensure Element-Web config.json exists
  4. ansible.builtin.file:
  5. path: "{{ matrix_element_web_config_path }}"
  6. state: file
  7. mode: 0644
  8. - name: Update Element-Web config.json with Element Call features
  9. ansible.builtin.blockinfile:
  10. path: "{{ matrix_element_web_config_path }}"
  11. block: |
  12. "features": {
  13. "feature_video_rooms": true,
  14. "feature_new_room_decoration_ui": true,
  15. "feature_group_calls": true,
  16. "feature_element_call_video_rooms": true
  17. },
  18. "element_call": {
  19. "url": "{{ matrix_element_call_base_url }}",
  20. "participant_limit": 8,
  21. "brand": "Element Call",
  22. "use_exclusively": true
  23. }
  24. marker: "# ANSIBLE MANAGED BLOCK - Element Call features"
  25. mode: '0644'
  26. owner: "{{ matrix_user_username }}"
  27. group: "{{ matrix_user_groupname }}"