Matrix Docker Ansible eploy
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 

22 linhas
625 B

  1. ---
  2. ---
  3. # Create the element.json file to point to Element Call
  4. - name: Ensure .well-known/element directory exists
  5. ansible.builtin.file:
  6. path: "{{ matrix_element_call_well_known_element_path | dirname }}"
  7. state: directory
  8. mode: 0755
  9. - name: Create or update the element.json file with Element Call config
  10. ansible.builtin.copy:
  11. dest: "{{ matrix_element_call_well_known_element_path }}"
  12. content: |
  13. {
  14. "call": {
  15. "widget_url": "{{ matrix_element_call_base_url }}"
  16. }
  17. }
  18. mode: '0644'
  19. owner: "{{ matrix_user_username }}"
  20. group: "{{ matrix_user_groupname }}"