Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 regels
720 B

  1. ---
  2. #
  3. # Tasks related to setting up Jitsi authentication mechanisms
  4. #
  5. - name: Ensure matrix-jitsi-prosody container is running
  6. systemd:
  7. state: started
  8. name: matrix-jitsi-prosody
  9. - name: Ensire Jitsi internal authentication users are created
  10. shell: "docker exec matrix-jitsi-prosody prosodyctl --config /config/prosody.cfg.lua register {{ item.username | quote }} meet.jitsi {{ item.password | quote }}"
  11. with_items: "{{ matrix_jitsi_prosody_auth_internal_accounts }}"
  12. when:
  13. - matrix_jitsi_auth_type == "internal"
  14. #
  15. # Configure other authentication mechanisms below
  16. #
  17. #
  18. # End
  19. #
  20. - name: Ensure matrix-jitsi-prosody container is stopped
  21. systemd:
  22. state: stopped
  23. name: matrix-jitsi-prosody