mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-10-31 15:27:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| #
 | |
| # Start Necessary Services
 | |
| #
 | |
| 
 | |
| - name: Ensure matrix-jitsi-prosody container is running
 | |
|   systemd:
 | |
|     state: started
 | |
|     name: matrix-jitsi-prosody
 | |
|   register: matrix_jitsi_prosody_start_result
 | |
| 
 | |
| 
 | |
| #
 | |
| # Tasks related to configuring Jitsi internal authentication
 | |
| #
 | |
| 
 | |
| - name: Ensure Jitsi internal authentication users are configured
 | |
|   shell: "docker exec matrix-jitsi-prosody prosodyctl --config /config/prosody.cfg.lua register {{ item.username | quote }} meet.jitsi {{ item.password | quote }}"
 | |
|   with_items: "{{ matrix_jitsi_prosody_auth_internal_accounts }}"
 | |
|   when:
 | |
|     - matrix_jitsi_auth_type == "internal"
 | |
|     - matrix_jitsi_prosody_auth_internal_accounts|length > 0
 | |
| 
 | |
| 
 | |
| #
 | |
| # Tasks related to configuring other Jitsi authentication mechanisms
 | |
| #
 | |
| 
 | |
| 
 | |
| 
 | |
| #
 | |
| # Tasks related to cleaning after Jitsi authentication configuration
 | |
| #
 | |
| 
 | |
| 
 | |
| #
 | |
| # Stop Necessary Services
 | |
| #
 | |
| - name: Ensure matrix-jitsi-prosody container is stopped if necessary
 | |
|   systemd:
 | |
|     state: stopped
 | |
|     name: matrix-jitsi-prosody
 | |
|   when: matrix_jitsi_prosody_start_result.changed|bool |