mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-10-31 15:27:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			782 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			782 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| # SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
 | |
| # SPDX-FileCopyrightText: 2023 Nikita Chernyi
 | |
| #
 | |
| # SPDX-License-Identifier: AGPL-3.0-or-later
 | |
| 
 | |
| ---
 | |
| 
 | |
| - tags:
 | |
|     # This role intentionally doesn't do work on a `setup-all` tag.
 | |
|     # If it did, the initial installation (`--tags=setup-all`) would also potentially pollute the database with data,
 | |
|     # which would make importing a database dump problematic.
 | |
|     #
 | |
|     # See the variable "matrix_user_creator_users_auto" on group_vars/matrix_servers for actual values of users which running these tags can create with this role by default.
 | |
|     - ensure-matrix-users-created
 | |
|     - ensure-users-created
 | |
|   block:
 | |
|     - when: matrix_user_creator_users | length > 0
 | |
|       ansible.builtin.include_tasks: "{{ role_path }}/tasks/setup.yml"
 |