mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-11-04 00:58:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
---
 | 
						|
 | 
						|
- name: Fail if required riot-web settings not defined
 | 
						|
  fail:
 | 
						|
    msg: >
 | 
						|
      You need to define a required configuration setting (`{{ item }}`) for using riot-web.
 | 
						|
  when: "vars[item] == ''"
 | 
						|
  with_items:
 | 
						|
    - "matrix_riot_web_default_hs_url"
 | 
						|
 | 
						|
- name: (Deprecation) Catch and report renamed riot-web variables
 | 
						|
  fail:
 | 
						|
    msg: >-
 | 
						|
      Your configuration contains a variable, which now has a different name.
 | 
						|
      Please change your configuration to rename the variable (`{{ item.old }}` -> `{{ item.new }}`).
 | 
						|
  when: "item.old in vars"
 | 
						|
  with_items:
 | 
						|
    - {'old': 'matrix_riot_web_homepage_template', 'new': 'matrix_riot_web_embedded_pages_home_path'}
 | 
						|
    - {'old': 'matrix_riot_web_homepage_template_general', 'new': '<removed>'}
 | 
						|
    - {'old': 'matrix_riot_web_homepage_template_technical', 'new': '<removed>'}
 | 
						|
    - {'old': 'matrix_riot_web_homepage_template_building', 'new': '<removed>'}
 | 
						|
    - {'old': 'matrix_riot_web_homepage_template_contributing', 'new': '<removed>'}
 | 
						|
    - {'old': 'matrix_riot_web_container_expose_port', 'new': '<superseded by matrix_riot_web_container_http_host_bind_port>'}
 |